• 数据结构题型9-顺序栈


    #include   //引入头文件
    using namespace std;
    
    typedef int Elemtype;
    
    #define Maxsize 10
    #define ERROR 0
    #define OK    1
    
    typedef struct
    {
    	Elemtype data[Maxsize];
    	int top;
    }SqStack;
    
    
    void InitStack(SqStack& S)
    {
    	S.top = -1;
    }
    bool StackEmpty(SqStack S)
    {
    	if (S.top == -1)   //堆空
    		return OK;
    	else              //不空
    		return ERROR;
    }
    
    bool Push(SqStack& S, Elemtype x)
    {
    	if (S.top == Maxsize - 1)
    		return ERROR;
    	S.data[++S.top] = x;
    	return OK;
    }
    
    bool Pop(SqStack& S, Elemtype& x)
    {
    	if (S.top == -1)
    		return ERROR;
    	x = S.data[S.top--];
    	return OK;
    }
    
    bool GetTop(SqStack& S, Elemtype& x)
    {
    	if (S.top == -1)
    		return ERROR;
    	x = S.data[S.top];
    	return OK;
    }
    
    int main(void)
    {
    	SqStack S;
    	InitStack(S);
    	Push(S, 1);
    	Push(S, 2);
    	Push(S, 3);
    	Push(S, 4);
    	Push(S, 5);
    	int top = 0;
    	GetTop(S, top);
    	cout << "stack top: " << top << endl;
    	if (StackEmpty(S) == 1)
    		cout << "Stack is empty"<< endl;
    	else
    		cout << "Stack is not empty"<< endl;
    	int x = 0;
    	Pop(S, x);
    	cout << "pop1: " << x << endl;
    	Pop(S, x);
    	cout << "pop2: " << x << endl;
    	Pop(S, x);
    	cout << "pop3: " << x << endl;
    	Pop(S, x);
    	cout << "pop4: " << x << endl;
    	Pop(S, x);
    	cout << "pop5: " << x << endl;
    	if (StackEmpty(S) == 1)
    		cout << "Stack is empty" << endl;
    	else
    		cout << "Stack is not empty" << endl;
    	return 0;
    }
    
    //#include   //引入头文件
    //using namespace std;
    //
    //typedef int Elemtype;
    //
    //#define Maxsize 10
    //#define ERROR 0
    //#define OK    1
    //
    //typedef struct
    //{
    //	Elemtype data[Maxsize];
    //	int top;
    //}SqStack;
    //
    //
    //void InitStack(SqStack& S)
    //{
    //	S.top = 0;
    //}
    //bool StackEmpty(SqStack S)
    //{
    //	if (S.top == 0)   //堆空
    //		return OK;
    //	else              //不空
    //		return ERROR;
    //}
    //
    //bool Push(SqStack& S, Elemtype x)
    //{
    //	if (S.top == Maxsize)
    //		return ERROR;
    //	S.data[S.top++] = x;
    //	return OK;
    //}
    //
    //bool Pop(SqStack& S, Elemtype& x)
    //{
    //	if (S.top == 0)
    //		return ERROR;
    //	x = S.data[--S.top];
    //	return OK;
    //}
    //
    //bool GetTop(SqStack& S, Elemtype& x)
    //{
    //	if (S.top == 0)
    //		return ERROR;
    //	x = S.data[S.top-1];
    //	return OK;
    //}
    //
    //int main(void)
    //{
    //	SqStack S;
    //	InitStack(S);
    //	Push(S, 1);
    //	Push(S, 2);
    //	Push(S, 3);
    //	Push(S, 4);
    //	Push(S, 5);
    //	int top = 0;
    //	GetTop(S, top);
    //	cout << "stack top: " << top << endl;
    //	if (StackEmpty(S) == 1)
    //		cout << "Stack is empty" << endl;
    //	else
    //		cout << "Stack is not empty" << endl;
    //	int x = 0;
    //	Pop(S, x);
    //	cout << "pop1: " << x << endl;
    //	Pop(S, x);
    //	cout << "pop2: " << x << endl;
    //	Pop(S, x);
    //	cout << "pop3: " << x << endl;
    //	Pop(S, x);
    //	cout << "pop4: " << x << endl;
    //	Pop(S, x);
    //	cout << "pop5: " << x << endl;
    //	if (StackEmpty(S) == 1)
    //		cout << "Stack is empty" << endl;
    //	else
    //		cout << "Stack is not empty" << endl;
    //	return 0;
    //}
    
    • 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
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
  • 相关阅读:
    图像处理与计算机视觉--第一章-计算机视觉简介-10问
    OpenAI Sora视频模型技术原理报告解读
    2023/09/07 c++&qt day2
    【linux编程】linux文件IO高级I/O函数介绍和代码示例
    ASR6500S低功耗LoRa+射频前端LPWAN应用芯片
    muduo源码剖析之SocketOps类
    鸿蒙OS开发:【一次开发,多端部署】(app市场首页)项目
    网络协议:透彻解析HTTP协议
    深信服C++笔试
    Spring框架(三)
  • 原文地址:https://blog.csdn.net/qq_41735476/article/details/133267643