在C++中用STL实现简单计算器

本文介绍如何利用C++标准模板库(STL)构建一个基本的计算器,通过解析输入的数学表达式并进行运算。

                                                                      在C++中用STL实现简单计算器

 

#include <iostream>

#include <stack>

 

using namespace std;

 

int Priority(char ch)

{

switch(ch)

{

case '(':

return 3;

case '*':

case '/':

return 2;

case '+':

case '-':

return 1;

default:

return 0;

}

 

}

 

int main()

{

int i = 0, tmp = 0, num1, num2, result;

stack<int> s_opt, s_num;

char opt[64] = {0};

char ch;

 

cout << "Please input :" << endl;

cin >> opt;

 

while (opt[i] != '\0' || s_opt.empty() != true)

{

if (opt[i] >= '0' && opt[i] <= '9')

{

tmp = tmp * 10 + opt[i] - '0';

i++;

if (opt[i] > '9' || opt[i] < '0')

{

s_num.push(tmp);

tmp = 0;

}

}

else

{

//操作符进栈

if (s_opt.empty() || (s_opt.top() == '(' && opt[i] != ')')

|| Priority(opt[i]) > Priority(s_opt.top()))

{

s_opt.push(opt[i]);

i++;

continue;

}

 

if (s_opt.top() == '(' && opt[i] == ')')

{

s_opt.pop();

i++;

continue;

}

 

if ((opt[i] == ')' && s_opt.top() != '(') ||

Priority(opt[i]) <= Priority(s_opt.top()) || (opt[i] == '\0' && !s_opt.empty()))

{

ch = s_opt.top();

s_opt.pop();

switch(ch)

{

case '+':

num1 = s_num.top();

s_num.pop();

num2 = s_num.top();

s_num.pop();

s_num.push(num1 + num2);

break;

case '-':

num1 = s_num.top();

s_num.pop();

num2 = s_num.top();

s_num.pop();

s_num.push(num2 - num1);

break;

case '*':

num1 = s_num.top();

s_num.pop();

num2 = s_num.top();

s_num.pop();

s_num.push(num1 * num2);

break;

case '/':

num1 = s_num.top();

s_num.pop();

num2 = s_num.top();

s_num.pop();

s_num.push(num2 / num1);

break;

}

}

}

}

result = s_num.top();

 

cout << result << endl;

return 0;

}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值