c++栈的定义以及相关运算;初始化、是否为空、插入元素、删除元素、获取顶层元素、销毁栈、打印栈操作

#include <iostream>
#define MAXSIZE 10
typedef struct {
	int data[MAXSIZE];
	int top;
}SqStack;
bool initStack(SqStack &S){
	S.top = -1;
}
bool StackEmpty(SqStack S){
	if(S.top==-1){
		return true;

	}
return false;
}
bool push(SqStack &S,int x){
	S.data[++S.top] = x;
	return true;
}
bool pop(SqStack &S,int &x){
	if(!StackEmpty(S)){
	x = S.data[S.top--];
	return true;
	}
	return false;
}
bool GetTop(SqStack S,int &x){
	if(!StackEmpty(S)){
	x = S.data[S.top];
	return true;
	}
	return false;
}
bool DestroyStack(SqStack &S){
	S.top = -1;
	return true;
}
void printStack(SqStack S){
	for(int i=0;i<S.top+1;i++){
		if(!StackEmpty(S)){
			printf("%d",S.data[i]);
		}
	}
	printf("\n");
}
int main(){
	SqStack S;
	int x;
	initStack(S);
	push(S,1);
	push(S,2);
	push(S,3);
	printStack(S);
	pop(S,x); 
	printStack(S);
}
posted @ 2023-04-20 13:16  欲尽  阅读(48)  评论(0)    收藏  举报