码迷,mamicode.com
首页 > 其他好文 > 详细

23 入栈 出栈

时间:2017-08-03 11:18:56      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:style   tac   .com   分析   color   logs   highlight   alt   while   

 分析下列程序输出:string

int main() {
	StackS;
	char x,y;
	Initstack(S);
	x=‘n‘;y=‘g‘;
	Push(S,x);Push(S,‘i‘);Push(S,y);
	Pop(S,x);Push(S,‘r‘);Push(S,‘t‘);Push(S,x);
	Pop(S,x);Push(S,‘ s‘);
	while(!StackEmpty(S)) {
		Pop(S,y);printf(y);
	};
	Printf(x);
}

 分析:看完如下的结果即可。补充一下:Push(S,x)是往S中入栈,Pop(S,x)是从S中出栈,并把出栈的元素取代x中的元素。

 

技术分享

23 入栈 出栈

标签:style   tac   .com   分析   color   logs   highlight   alt   while   

原文地址:http://www.cnblogs.com/dd2hm/p/7278295.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!