数据结构之栈
typedef struct
{	ElemType data[MaxSize];
 	int top;
}SqStack;
//初始化栈
void InitStack(SqStack * &s)
{	s=(SqStack *)malloc(sizeof(SqStack));
 	s->top = -1;
}
//销毁栈
void DestroyStack(SqStack * &s)
{	
    free(s);
}
//判断栈是否为空
bool StackEmpty(SqStack * s)
{	
    return (s->top==-1);
}
//进栈
bool Push(SqSatck * &s,ElemType e)
{	if (s->top==MaxSize-1)
    	return false;
    s->top++;
 	s->data[s->top]=e;
 	return true;
}
//出栈
bool Pop(SqStack * &s,ElemType &e)
{	if (s->top==-1)
    	return false;
 	e=s->data[s->top];
 	s->top--;
    return true;
}
//取栈顶元素
bool GetTop(SqStack * s,ElemType &e)
{	if (s->top==-1)
    	return false;
    e=s->data[s->top];
 	return true;
}
posted on 2025-10-20 20:42  wss0920  阅读(6)  评论(0)    收藏  举报