#define Max 100
p=(char *) malloc (Max*sizeof(char));
潜水员!
/*改了一下,楼主试试*/
#include <stdio.h>
#include<stdlib.h>
#define Max 100
char *top;
char *boton;
char *p;
void push(char m)
{
if(p>top)
{
printf("栈已满\n");
return;
}
else
{
p++;
*p=m;
}
}
void pop()
{
char q;
if(p<=boton)
{
printf("空栈\n");
return;
}
else
{
q=*p;
p--;
/*free(q);此大谬也*/
}
}
void main(void)
{
char *q,c;
p=(char *) malloc (Max*sizeof(char));
if(!p)
{
printf("内存分配失败\n");
return(1);
}
boton=p;
top=p+Max-1;
printf("请输入数据:\n");
while(1)
{
c=getchar();
if((p==boton)&&(c=='#'))
{continue;}
if((p!=boton)&&(c=='#'))
{
pop();
}
else if(c=='\n')
{
break;
}
else
{
push(c);
}
}
q=boton;
printf("\n");
while(q<p)
{
q++;
printf("%c",*q);
}
}
还有:老师说goto语句尽量不用
还有:栈顶top应该是向低地址方向浮动的,楼主bottom误拼作botton
老师还说:融四岁,能让梨
老师还说:一日夫妻百日恩
。。。。。。。。。。。。。
中国式好学生哟!