|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
以下为源代码,我是按照书里把用到的栈函数一个个打出来的~
#include <stdio.h>
using namespace std;
#define maxsize 100
typedef int elemtype;
int x;
typedef struct
{
elemtype elem[maxsize];
int top;
}Stack;
void InitStack(Stack *s)
{ s->top=0;
}
elemtype Push(Stack *s,elemtype x)
{
if(s->top==maxsize)
printf("Overflow");
else
s->elem[s->top++]=x;
}
elemtype Pop(Stack *s)
{if(s->top==0)
return NULL;
else
{
s->top--;
return s->elem[s->top];
}
}
elemtype StackEmpty(Stack *s)
{
if(s->top>0)
return 0;
else
return 1;
}
int main()
{
Stack s;
InitStack(&s);
printf("请输入不为0的数,进栈\n");
do {
Push(&s,scanf("%d",&x));
}
while (x!=0);
while(!StackEmpty(&s))
printf("%d\t",Pop(&s));
}
求大神指正!
scanf 的返回值并不是输入进去的值,scanf函数是c语言当中非常重要的格式化输入函数
其函数原型为:int scanf(const char *format, ...);
其函数返回值:成功格式化解析的个数
其调用格式为:scanf("<格式化字符串>", <参量表>);
|
|