- 论坛徽章:
- 0
|
#include<iostream>
#include<stack>
#include<cassert>
using namespace std;
int main()
{
stack<int>intstack(20);
stack<int>reverseintstack(20);
stack<char>charstack(20);
stack<char>reversecharstack(20);
char oper;
char ch;
int num;
int num1,num2,num3;
cout<<"enter a number: ";
cin>>num;
intstack.push(num);
cout<<endl;
cout<<"enter oper: ";
cin>>oper;
charstack.push(oper);
//cout<<"enter a number: ";
//cin>>num;
//intstack.push(num);
while(oper!='#')
{
cout<<"enter a number: ";
cin>>num;
intstack.push(num);
if(oper=='*')
{
charstack.pop();
num1=intstack.top();
intstack.pop();
num2=intstack.top();
intstack.pop();
num3=num1*num2;
intstack.push(num3);
}
if(oper=='/')
{
charstack.pop();
num1=intstack.top();
intstack.pop();
num2=intstack.top();
intstack.pop();
num3=num2/num1;
intstack.push(num3);
}
if(oper=='+'||oper=='-')
charstack.push(oper);
if(oper!='*'||oper!='/'||oper!='+'||oper!='-')
{
cerr<<" wrong operator,enter a operator again."<<endl;
cin>>oper;
}
cout<<"enter a oper: ";
cin>>oper;
charstack.push(oper);
cout<<endl;
//cout<<"enter num: ";
//cin>>num;
//intstack.push(num);
//cout<<"enter a number: ";
//cin>>num;
//intstack.push(num);
}
while(!intstack.isemptystack())
{
num1=intstack.top();
reverseintstack.push(num1);
intstack.pop();
}
while(!charstack.isemptystack())
{
ch=charstack.top();
reversecharstack.push(ch);
charstack.pop();
}
while(!reverseintstack.isemptystack())
{
num1=reverseintstack.top();
reverseintstack.pop();
if(reverseintstack.isemptystack())
cout<<num1;
else
{
num2=reverseintstack.top();
reverseintstack.pop();
oper=reversecharstack.top();
reversecharstack.pop();
if(oper=='+')
{
num1=num1+num2;
reverseintstack.push(num1);
}
if(oper=='-')
{
num1=num1-num2;
reverseintstack.push(num1);
}
}
}
}
这个结构比较混乱,没考虑异常,也没考虑括号!
[ 本帖最后由 spdf 于 2007-4-15 00:37 编辑 ] |
|