题目:2390. 从字符串中移除星号
思路:使用栈就可以,这里string也可以实现栈的效果
class Solution {
public:
string removeStars(string s) {
string e="";
for(auto x:s){
if(x=='*') e.pop_back();
else e.push_back(x);
}
return e;
}
};
标签:string,星号,back,2390,移除,字符串,LeetCode
From: https://blog.csdn.net/weixin_46028214/article/details/142255643