当前位置:   article > 正文

栈和队列(c++)_#include using namespace std; typedef i

#include using namespace std; typedef int datatype; typedef struc

1. 栈

栈的原则是先进后出,操作类似于链表。写程序本身就是规则制定的过程,我们是规则的制定者,而栈、队列这些东西都是规则下的产物。

1.1 顺序栈

#include <iostream>
using namespace std;
typedef int DataType;

const int MaxSize = 50;//定义顺序栈的存储容量

class SeqStack{
   
	int top;
	DataType data[MaxSize];

	public:
		SeqStack();//构造函数
		~SeqStack();//析构函数
		bool IsEmpty();//判空
		bool IsFull();//判满
		void Push(DataType e);//入栈
		DataType Pop();//出栈
		DataType GetTop();//栈顶元素
		void Clear();//清空
};

SeqStack::SeqStack(){
   
	top = -1;
}
SeqStack::~SeqStack(){
   

}

bool SeqStack::IsFull(){
   
	return (top + 1) == MaxSize;
}

bool SeqStack::IsEmpty(){
   
	return top == -1;
}

void SeqStack::Clear(){
   
	top = -1;
}

void SeqStack::Push(DataType e){
   
	if(!IsFull()){
   
		data[++top] = e;
	}else{
   
		cout << "栈满!!!" << endl;
		exit(0);
	}
}

DataType SeqStack::Pop(){
   
	if(!IsEmpty()){
   
		return data[top--];
	}else{
   
		cout << "栈空!!!" << endl;
		exit(0);
	}
}

DataType SeqStack::GetTop(){
   
	if(IsEmpty()){
   
		cout << "栈空!!!" << endl;
		exit(0);
	}else{
   
		return data[top];
	}
}
//实现倒序输出
int main(){
   
	SeqStack s;
	int a[] = {
   0,1,2,3,4,5,6,7,8,9};
	int len = sizeof(a)/sizeof(a[0]);

	for(int i &#
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/秋刀鱼在做梦/article/detail/970394
推荐阅读
相关标签
  

闽ICP备14008679号