数据结构 栈的基本操作 请问错在哪了?

#include"stdio.h"#defineStackSize10typedefcharDataType;typedefstruct{DataTypedata[Sta... #include "stdio.h"
#define StackSize 10
typedef char DataType;
typedef struct
{
DataType data[StackSize];
int top;
}SeqStack;
//初始化
void InitStack( SeqStack *s )
{
s->top = -1;
}
//判满
int StackEmpty( SeqStack *s )
{
return s->top == -1;
}
//判空
int StackFull( SeqStack *s )
{
return s->top == StackSize - 1;
}
//元素入栈
int push( SeqStack *s, DataType item )
{
if(StackFull(s))
{
printf("满");
return 0;
}
else
{
s->top = s->top + 1; //栈顶下标加一
s->data [s->top ] = item; //元素入栈
return 1;
}
}
//出栈
int Pop( SeqStack *s, DataType item)
{
if(StackEmpty(s))
{
printf("栈空");
return 0;
}
else
{
item = s->data[s->top ]; //出栈
s->top --; //栈顶减一
return 1;
}
}
void main()
{
SeqStack S;
DataType ch;
int i;
InitStack( &s );
for( i = 0; i < 10; i++ )
{
scanf("%c", &ch);
push( &s, ch );
}
for( i = 0; i < StackSize ; i++)
{
Pop( &s, ch);
printf("%5c" , ch);
}
}

错误:
C:\Users\k59\Desktop\Text1.c(56) : error C2065: 's' : undeclared identifier
C:\Users\k59\Desktop\Text1.c(56) : warning C4133: 'function' : incompatible types - from 'int *' to 'struct SeqStack *'
C:\Users\k59\Desktop\Text1.c(60) : warning C4133: 'function' : incompatible types - from 'int *' to 'struct SeqStack *'
C:\Users\k59\Desktop\Text1.c(64) : warning C4133: 'function' : incompatible types - from 'int *' to 'struct SeqStack *'
展开
 我来答
倒弄献7005
2017-07-06 · TA获得超过308个赞
知道小有建树答主
回答量:517
采纳率:0%
帮助的人:130万
展开全部
#include <stdio.h>
#include <malloc.h>
#include <stdlib.h>

typedef struct Node
{
int Data;
struct Node * NEXT;

}NODE, * PNODE;
typedef struct stack
{
追问
这是链栈? 想问顺序栈
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式