加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

《数据结构》实验三: 栈和队列实验

发布时间:2020-12-15 05:50:45 所属栏目:安全 来源:网络整理
导读:? 一. . 实验目的 ????? 巩固栈和队列数据结构,学会运用栈和队列。 1. 回顾栈和队列的逻辑结构和受限操作特点,栈和队列的物理存储结构和常见操作。 2. 学习运用栈和队列的知识来解决实际问题。 3. 进一步巩固程序调试方法。 4. 进一步巩固模板程序设计 二

?

一..实验目的

?????巩固栈和队列数据结构,学会运用栈和队列。

1.回顾栈和队列的逻辑结构和受限操作特点,栈和队列的物理存储结构和常见操作。

2.学习运用栈和队列的知识来解决实际问题。

3.进一步巩固程序调试方法。

4.进一步巩固模板程序设计

二..实验内容

1.自己选择顺序或链式存储结构,定义一个空栈类,并定义入栈、出栈、取栈元素基本操作。然后在主程序中对给定的N个数据进行验证,输出各个操作结果。

?

先定义一个头文件

#ifndef SeqStack_H
#define? SeqStack_H
const int StackSize = 10;

template <class DataTtype>
class SeqStack
{
public:
?SeqStack();
?~SeqStack(){}
?void push(DataTtype x);
?DataTtype Pop();
?DataTtype GetTop();
?int Empty();
private:
?DataTtype data[StackSize];
?int top;
};

template <class DataTtype>
SeqStack<DataTtype>::SeqStack()
{
?top = -1;
}

template <class DataTtype>
void SeqStack<DataTtype>::push(DataTtype x)
{
?if (top == StackSize) throw "上溢";
?data[++top] = x;
}

template <class DataTtype>
DataTtype SeqStack<DataTtype>::Pop()
{
?DataTtype x;
?if (top == -1) throw "下溢";
?x = data[top--];
?return x;
}

template <class DataTtype>
DataTtype SeqStack<DataTtype>::GetTop()
{
?if (top != -1)
??return data[top];
}


template <class DataTtype>
int SeqStack<DataTtype>::Empty()
{
?if (top == -1)return 1;
?else return 0;
}
#endif

#include <iostream>
#include "标头.H"
using namespace std;

?主文件

void main()
{
?int i;
?SeqStack<int> S;
?if (S.Empty())
??cout << "栈为空" << endl;
?else
??cout << "栈非空" << endl;
?cout << "对8和91执行入栈操作" << endl;
?S.push(8);
?S.push(91);
?cout << "栈顶元素为:" << endl;
?cout << S.GetTop() << endl;
?cout << "执行一次出栈操作" << endl;
?S.Pop();
?cout << "栈顶元素为:" << endl;
?cout << S.GetTop() << endl;
?cin >> i;
}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读