代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
C
】
用顺序栈计算只含加减乘除和括号的表达式
作者:
Chenyz
/ 发布于
2011/9/18
/
693
用C++语言实现,希望大家给出优化意见
<div> <pre> //use seqStack to solve Expression Resolve #include<stack> #include<vector> #include<iostream> #include<string> using namespace std; const string supportedOperator = "+-*/()"; // '+' '-' '*' '/' '(' ')' const int precede[6][6] = { {1,1,-1,-1,-1,1}, {1,1,-1,-1,-1,1}, {1,1,1,1,-1,1}, {1,1,1,1,-1,1}, {-1,-1,-1,-1,-1,0}, {1,1,1,1,2,1} }; //push input into the inorder vector void input(vector<char>&); //change inorder expression to postorder expression void convert(const vector<char>&, vector<char>&); //calculate return the expression's value int calc(const vector<char>&); //return ture when '(', ')', '+', '-', '*', '/' bool isOperator(const char); //return operator's index in supportedOperator int getIndex(const char); //return int value from postorder vector int calcOperand(const vector<char>&, vector<char>::const_iterator&); int main(){ vector<char> inorder, postorder; string prompt="Input a express and end with ctrl+Z:\n"; cout<<prompt; input(inorder); convert(inorder, postorder); cout<<calc(postorder)<<endl; return 0; } void input(vector<char>& inorder){ char temp; while(cin>>temp){ inorder.push_back(temp); } } void convert(const vector<char>& inorder, vector<char>& postorder){ stack<char> _operator; vector<char>::const_iterator i; for(i=inorder.begin(); i!=inorder.end(); ++i){ if( isdigit(*i) ){ postorder.push_back(*i); } if( isOperator(*i) ){ if(!postorder.empty() && postorder.back()!=' '){ postorder.push_back(' '); } if(*i == '('){ _operator.push(*i); } else if(*i == ')'){ while(!_operator.empty()){ if(_operator.top() == '('){ _operator.pop(); break; } postorder.push_back(_operator.top()); postorder.push_back(' '); _operator.pop(); } } else{ while(!_operator.empty()){ int x = getIndex(_operator.top()); int y = getIndex(*i); if( precede[x][y] >=0 ){ postorder.push_back(_operator.top()); postorder.push_back(' '); _operator.pop(); } else break; } _operator.push(*i); } } } if(!_operator.empty()){ if(!postorder.empty() && postorder.back()!=' '){ postorder.push_back(' '); } postorder.push_back(_operator.top()); postorder.push_back(' '); _operator.pop(); } } bool isOperator(const char check){ unsigned int loc = supportedOperator.find(check, 0); return loc == string::npos ? false : true; } int getIndex(const char src){ switch(src){ case '+': return 0; case '-': return 1; case '*': return 2; case '/': return 3; case '(': return 4; case ')': return 5; } } int calc(const vector<char>& postorder){ stack<int> interRes; int operand; vector<char>::const_iterator i; for(i=postorder.begin(); i!=postorder.end(); ++i){ if( isOperator(*i) ){ int temp=0; switch(*i){ case '+': temp = interRes.top(); interRes.pop(); temp += interRes.top(); interRes.pop(); interRes.push(temp); break; case '-': temp = interRes.top(); interRes.pop(); temp = interRes.top() - temp; interRes.pop(); interRes.push(temp); break; case '*': temp = interRes.top(); interRes.pop(); temp *= interRes.top(); interRes.pop(); interRes.push(temp); break; case '/': temp = interRes.top(); interRes.pop(); temp = interRes.top() / temp; interRes.pop(); interRes.push(temp); break; } } else if( isdigit(*i) ){ interRes.push( calcOperand(postorder, i) ); } //skip space between operators } return interRes.top(); } int calcOperand(const vector<char>& postorder, vector<char>::const_iterator& i){ stack<int> temp; while(*i != ' '){ temp.push( *i-'0' ); ++i; } double bit=0; int res=0; while(!temp.empty()){ res += temp.top()*pow(10.0, bit); temp.pop(); bit++; } return res; }</pre> </div>
试试其它关键字
顺序栈
同语言下
.
获取手机通讯录 iOS去除数字以外的所有字符
.
异步加载音乐等资源
.
交通罚单管理系统
.
freemark实现,简单的替换
.
计算斐波那契数列
.
base64解码 包括解码长度
.
图像显示
.
冒泡排序
.
输入十进制数,输出指定进制
.
链式栈
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
Chenyz
贡献的其它代码
(
1
)
.
用顺序栈计算只含加减乘除和括号的表达式
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3