牛客编程巅峰赛S2赛季第5场代码第三题

class Solution {
public:
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
* 给定一个后缀表达式,返回它的结果
* @param str string字符串
* @return
long长整型
*/
long long solve(string str) {
// write code here
long long a,b=1,c,d=0;
stack<long long> s;
for(int i=0;i<str.size();i++){
if(str[i]>='0'&&str[i]<='9'&&b==1){
a=str[i]-'0';
b=0;
d=0;
}
else if(str[i]>='0'&&str[i]<='9'&&b==0){
a*=10;
a+=str[i]-'0';
d=0;
}
else if(str[i]=='#'&&d==0){
b=1;
d=1;
s.push(a);
}
else if(str[i]=='+'){
a=s.top();
s.pop();
c=s.top();
s.pop();
s.push(a+c);
}
else if(str[i]=='-'){
a=s.top();
s.pop();
c=s.top();
s.pop();
s.push(c-a);
}
else if(str[i]=='*'){
a=s.top();
s.pop();
c=s.top();
s.pop();
s.push(a*c);
}
}
return s.top();
}
};
#笔试题目#
全部评论

相关推荐

Jcwemz:中软证书写单行,考了什么学了什么相关技术栈的内容就说自己会什么, 没实习就包装实习简历,将项目经历写成实习做的,项目时间拉长,项目成果具体化,测试的项目成果无非就是写了多少用例查出了多少bug,重要的不是实习了多久,而是你会多少东西,你能表达的就都是你的。 cet4,随便找个地方标上就好了,不用写单行。 粗略建议,我也不在行,觉得对的可以采纳
实习,投递多份简历没人回...
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务