| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1017 人关注过本帖
标题:[求助]我的这个程序有错误请朋友们来帮个忙好吗?
取消只看楼主 加入收藏
hbl1218
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2004-10-15
收藏
 问题点数:0 回复次数:1 
[求助]我的这个程序有错误请朋友们来帮个忙好吗?

假设初始值为空的栈中依次插入元素a1,a2,a3........an后,删除这些元素的次序是an,an-1,......,a2,a1,出栈并输出.

#include<stdio.h> #define max 10 typedef struct { char stack [max]; int top; } qstype; void initate q_stype (struct q_stype *s) { s->top=-1;} int push (q_stype *s,int x) { if (s->top==max-1) return(0); else { s->top++; s->stack[s->top]=x; return(1);} } main() { int ch,sign; q_stype *s; initcate q->(s); printf(">"); scanf("god",ch); while (ch!=-1) if (sign=push { printf("overflon\n"); break; } else scanf ("god",ch); while (s->top!=-1) { s->top--; printf("stack=%d\n",s->stack[s->top+1];} printf("\n");}

搜索更多相关主题的帖子: 朋友 
2004-11-02 17:22
hbl1218
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2004-10-15
收藏
得分:0 
少定义一人函数呀,
2004-11-04 17:01
快速回复:[求助]我的这个程序有错误请朋友们来帮个忙好吗?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.022080 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved