#include "iostream.h"
#include "string.h"
#ifndef LL_STACK
#define LL_STACK
#include <list>
using namespace std;
template<class T>
class LLStack
{
private:
list<T> lst;
public:
LLStack(){}
void clear()
{
lst.clear();
}
bool isEmpty () const
{
return lst.empty();
}
//返回最后一个数的数值
T& topEl()
{
return lst.back();
}
//删除最后一个数并返回该数的数值
T pop()
{
T el=lst.back();
lst.pop_back();
return el;
}
//压入一个数
void push(const T& el)
{
lst.push_back(el);
}
};
#endif
char precede(char op1,char op2)//比较运算符的优先级
{
if((op1=='+')||(op1=='-'))
{
if((op2=='+')||(op2=='-')||(op2==')')||(op2=='#'))
return '>';
if((op2=='*')||(op2=='/')||(op2=='('))
return '<';
}
if((op1=='*')||(op1=='/'))
{
if((op2=='+')||(op2=='-')||(op2=='*')||(op2=='/')||(op2=='#')||(op2==')'))
return '>';
if(op2=='(')
return '<';
}
if(op1=='(')
{
if((op2=='*')||(op2=='/')||(op2=='+')||(op2=='-')||(op2=='('))
return '<';
if(op2==')')
return '=';
if(op2=='#')
return ' ';
}
if(op1==')')
{
if((op2=='*')||(op2=='/')||(op2=='+')||(op2=='-')||(op2==')')||(op2=='#'))
return '>';
if(op2=='(')
return ' ';
}
if(op1=='#')
{
if((op2=='*')||(op2=='/')||(op2=='+')||(op2=='-')||(op2=='('))
return '<';
if(op2=='#')
return '=';
if(op2==')')
return ' ';
}
return ' ';
}
int operate(int a,char b,int c)
{
switch(b)
{
case '+':
return a+b;
break;
case '-':
return a-b;
break;
case '*':
return a*b;
break;
case '/':
return a/b;
break;
default:
cout<<"出现错误"<<endl;
return 0;
}
}
void main()
{
LLStack<char> oper;
LLStack<int> numb;
char g[50];
int flag=0;
int a,b;
cout<<"输入计算公式: ";
cin>>g;
int d=strlen(g);
g[d]='#';
g[d+1]='\0';
oper.push('#');
for (int i=0;g[i]!='#'||oper.topEl()!='#';i++)
{
if(g[i]>='0'&&g[i]<='9')
{
a=g[i]-'0';
if(flag==0) numb.push(a);
else numb.push(numb.pop()*10+a);
flag=1;
}
else
{
switch(precede(oper.topEl(),g[i])) {
case '<':
oper.push(g[i]);
break;
case '=':
oper.pop();
break;
case '>':
a=numb.pop();
b=numb.pop();
numb.push(operate(b,oper.pop(),a));
break;
}
flag=0;
}
}
cout<<"the answer is "<<numb.topEl()<<endl;
}
这个程序是用链表实现堆栈,并用堆栈来实现对计算式输入求解
我把头文件的内容也一起放上去,每次不管输入什么都是出错,自己感觉就是执行到oper.push('#');这一句时出错,但又找不出错误。
[此贴子已经被作者于2006-11-12 22:55:21编辑过]