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

SDUT OJ 数据结构实验之栈二:一般算术表达式转换成后缀式

时间:2014-12-05 00:49:26      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:后缀式

bubuko.com,布布扣

#include<iostream>
using namespace std;
int youxian(char s)
{
	if(s=='+'||s=='-') return 1;
	else if(s=='*'||s=='/') return 2;
	else if(s=='(')  return 3;
	else if(s==')')  return 4;
}
int main()
{
	int top=0;
	char s,b[110];
	while(cin>>s && s!='#')
	{
		if(s>='a' && s<='z')
			cout<<s;
		else
		{
			if(top==0)
			{
				b[top++]=s;
			}
			else
			{
				if(youxian(s)>youxian(b[top-1]))
				{
					if(youxian(s)==4)
					{
						while(b[top-1]!='(')
						{
							cout<<b[--top];
						}
						   top--;
					}
					else
					{
						b[top++]=s;
					}
				}
				else 
				{
					if(b[top-1]=='(')
					{
						b[top++]=s;
					}
					else
					{
						cout<<b[top-1];
						b[top-1]=s;
					}
				}
			}
		}
	}
	while(top!=0)
	{
		cout<<b[top-1];
		top--;
	}
	cout<<endl;
	return 0;			
}


 

SDUT OJ 数据结构实验之栈二:一般算术表达式转换成后缀式

标签:后缀式

原文地址:http://blog.csdn.net/r_misaya/article/details/41733491

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