2390-从字符串中移除星号

Raphael Liu Lv10

给你一个包含若干星号 * 的字符串 s

在一步操作中,你可以:

  • 选中 s 中的一个星号。
  • 移除星号 左侧 最近的那个 非星号 字符,并移除该星号自身。

返回移除 所有 星号之后的字符串

注意:

  • 生成的输入保证总是可以执行题面中描述的操作。
  • 可以证明结果字符串是唯一的。

示例 1:

**输入:** s = "leet**cod*e"
**输出:** "lecoe"
**解释:** 从左到右执行移除操作:
- 距离第 1 个星号最近的字符是 "lee _ **t**_ **cod*e" 中的 't' ,s 变为 "lee*cod*e" 。
- 距离第 2 个星号最近的字符是 "le _ **e**_ *cod*e" 中的 'e' ,s 变为 "lecod*e" 。
- 距离第 3 个星号最近的字符是 "leco _ **d**_ *e" 中的 'd' ,s 变为 "lecoe" 。
不存在其他星号,返回 "lecoe" 。

示例 2:

**输入:** s = "erase*****"
**输出:** ""
**解释:** 整个字符串都会被移除,所以返回空字符串。

提示:

  • 1 <= s.length <= 105
  • s 由小写英文字母和星号 * 组成
  • s 可以执行上述操作
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
class Solution {
public:
string removeStars(string s) {
std::stack<char> stack;
for (auto c : s) {
if (stack.empty()) {
stack.push(c);
continue;
}
if (c == '*') {
stack.pop();
} else {
stack.push(c);
}
}

string res;
while (!stack.empty()) {
res += stack.top();
stack.pop();
}
std::reverse(res.begin(), res.end());
return res;
}
};
 Comments
On this page
2390-从字符串中移除星号