我用c++运行代码的时候出现了图片里面的错误,麻烦大家看一下该怎么改过来~~~

#include<stdio.h>#include<malloc.h>#include<string.h>#defineM20#defineelemtypechartyp... #include<stdio.h>#include<malloc.h>
#include<string.h>
#define M 20
#define elemtype char
typedef struct
{
elemtype stack[M];
int top;
}
stacknode;
void init(stacknode *st);
void push(stacknode *st,elemtype x);
void pop(stacknode *st);
void init(stacknode *st){
st->top=0;
}
void push(stacknode *st,elemtype x){
if(st->top==M)
printf("the stack is overflow!\n");
else
{
st->top=st->top+1;
st->stack[st->top]=x;
}
}
void pop(stacknode *st){
if(st->top>0) st->top--;
else printf("Stack is Empty!\n");
}
int main(){
char s[M];
int i;
stacknode *sp;
printf("create a empty stack!\n");
sp=malloc(sizeof(stacknode));
init(sp);
printf("input a expression:\n");
gets(s);
for(i=0;i<strlen(s);i++)
{
if(s[i]=='(')
push(sp,s[i]);
if(s[i]==')')
pop(sp);
}
if(sp->top==0)
printf("'('match')'!\n");
else
printf("'('not match')'!\n");
return 0;
}
展开
 我来答
arongustc
科技发烧友

2012-10-21 · 智能家居/数码/手机/智能家电产品都懂点
知道大有可为答主
回答量:2.3万
采纳率:66%
帮助的人:5964万
展开全部
sp=malloc(sizeof(stacknode));这里需要强制类型转换为stacknode*
sp=(stacknode*)malloc(sizeof(stacknode));
第二个错误无所谓的,没有特别危害
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式