aizu-ALDS1——A stack

本文介绍了一种使用栈数据结构来解析逆波兰表达式的算法实现。该算法通过逐个读取输入字符串中的元素,并根据遇到的操作数或运算符进行相应的处理,最终计算出表达式的值。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

逆波兰法表示算式

用stack就好了

1 c_str 是string的一个方法,用来和 原来的char 数组中的函数兼容

如果不加这个就用不了 atoi函数

2  注意,string是以空格结尾的,所以只判断第一个就行。

嗯,挑战程序设计竞赛2里的题。



#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <stack>
#include <cstring>
using namespace std;
const int maxn=2000;
int main()
{ stack<int>q;
string cc;
int sum=0;
//int i=0;
  while(cin>>cc)
  {   //int sum=0;


      if(cc[0]=='+')
    {  int c=q.top(); q.pop();
       int l=q.top(); q.pop();
       sum=c+l;
       //q.pop();q.pop();
        q.push(sum);
    }
      else if(cc[0]=='-')
      {  int c=q.top();
         q.pop();
         int l=q.top();
         q.pop();//q.pop();
         sum=l-c;
        q.push(sum);
      }
      else if(cc[0]=='*')
      {  int  c=q.top();
         q.pop();
         int l=q.top();
         q.pop();
          sum=l*c;
          q.push(sum);
      }
     else
        {//int l=atoi(cc);
             //int l=atoi(cc);
             //printf("%d ** \n",l);
         q.push(atoi(cc.c_str()));


        }


  }
   printf("%d\n",q.top());




    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值