#include<stdio.h>
#include<stdlib.h>
#define LEN sizeof(struct Snode)
struct Snode
{
int data;
struct Snode *next;
};
struct Snode *top=NULL; //指向栈顶的指针
void Print_list()
{struct Snode *p;
p=top;
if(p==NULL)
{printf("the top is empty");}
else
{while(p!=NULL)
printf("%d \n",p->data);
p=p->next;
}
}
void push(int value) //push a record to the top
{ struct Snode *newp;
newp=(struct Snode *)malloc(LEN);
newp->data=value;
newp->next=top;
top=newp;
}
int pop()
{struct Snode *temp;
if(top==NULL)
printf("the top is empty\n");
else
{temp=top;
top=top->next;
free(temp);
}
}
main()
{ int value;
while(1)
{ printf("please input the number");
scanf("%d",&value);
if(value==-1)
break;
else
push(value);
}
printf("the stack now is\n");
Print_list();
}
程序用一个链表模拟堆栈,当输入的数字为-1时输出堆栈
现在的问题是输出出错,程序总是将栈顶元素循环输出,
怀疑push函数或者print函数出错,
望大家不吝赐教!
以前不重视数据结构的学习,现在吃苦头了,得重头开始了。
[此贴子已经被作者于2006-8-10 23:30:32编辑过]