?
一..实验目的
?????巩固栈和队列数据结构,学会运用栈和队列。
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;
}
