1,如何断栈是否为空:
C# 中 Stack 类的Count 属性 返回就是堆栈的长度。
System.Collections.Stack stack = new System.Collections.Stack();
stack.push( "1" );
if( 0==stack.Count )
MessageBox.Show("堆栈为空。");
else
MessageBox.Show("堆栈为空。");
2,判断栈满、进栈的语句:
int stackfull(seqstack*s)
{
return (s->top==stacksize-1);
}
stacksizes=栈大小,栈从0开始,当栈顶指针=栈大小-1时,说明栈已经存满了
void push(seqstack *s,datatype x)
{
if(stackfull(s))
error("stack verflow"); 如果出错,进入出错处理,不进行下一步
s->data[++s->top]=x; 栈顶指针先加1,然后再将x保存到栈顶位置
楼主你好
以下是顺序栈的操作实现(c语言代码):
#include
#include
#define MAX 20
typedef struct node
{
int data[MAX];
int top;
}Stack;
void Initial_Stack(Stack * &s)//初始化栈
{
s=(Stack *)malloc(sizeof(Stack));
s->top=-1;
}
void Empty_Stack(Stack *s)//判断栈是否为空
{
if(-1 == s->top)
printf("栈空!\n");
else
printf("栈非空!\n");
}
void Creat_Stack(Stack * &s)//创建栈
{
int i=0;
printf("Enter the data:\n");
do{
scanf("%d",s->data+i);
s->top=i;
i++;
}while(i
void Disp_Stack(Stack * &s)//打印栈
{
int i;
for(i=s->top;i>=0;i--)
printf("%d: %d\n",s->top-i+1,s->data[i]);
}
void Push_Stack(Stack * &s,int e)//压栈
{
if(s->top==MAX-1)
{
printf("Stack full!\n");
return;
}
s->top++;
s->data[s->top]=e;
printf("After push:\n");
Disp_Stack(s);
}
void Pop_Stack(Stack * &s)//出栈
{
if(s->top==-1)
{
printf("Stack empty!\n");
return;
}
s->top--;
printf("After pop:\n");
Disp_Stack(s);
}
int main()
{
Stack *S;
Initial_Stack(S);
Empty_Stack(S);
Creat_Stack(S);
Empty_Stack(S);
printf("Initial stack:\n");
Disp_Stack(S);
Push_Stack(S,0);
Pop_Stack(S);
return 0;
}
希望能帮助你哈