返回介绍

solution / 2300-2399 / 2390.Removing Stars From a String / README

发布于 2024-06-17 01:03:06 字数 3671 浏览 0 评论 0 收藏 0

2390. 从字符串中移除星号

English Version

题目描述

给你一个包含若干星号 * 的字符串 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 可以执行上述操作

解法

方法一:栈模拟

我们可以使用栈模拟操作过程。遍历字符串 $s$,如果当前字符不是星号,则将其入栈;如果当前字符是星号,则将栈顶元素出栈。

最后我们将栈中元素拼接成字符串返回即可。

时间复杂度 $O(n)$,空间复杂度 $O(n)$。其中 $n$ 为字符串 $s$ 的长度。

class Solution:
  def removeStars(self, s: str) -> str:
    ans = []
    for c in s:
      if c == '*':
        ans.pop()
      else:
        ans.append(c)
    return ''.join(ans)
class Solution {
  public String removeStars(String s) {
    StringBuilder ans = new StringBuilder();
    for (int i = 0; i < s.length(); ++i) {
      if (s.charAt(i) == '*') {
        ans.deleteCharAt(ans.length() - 1);
      } else {
        ans.append(s.charAt(i));
      }
    }
    return ans.toString();
  }
}
class Solution {
public:
  string removeStars(string s) {
    string ans;
    for (char c : s) {
      if (c == '*') {
        ans.pop_back();
      } else {
        ans.push_back(c);
      }
    }
    return ans;
  }
};
func removeStars(s string) string {
  ans := []rune{}
  for _, c := range s {
    if c == '*' {
      ans = ans[:len(ans)-1]
    } else {
      ans = append(ans, c)
    }
  }
  return string(ans)
}
function removeStars(s: string): string {
  const ans: string[] = [];
  for (const c of s) {
    if (c === '*') {
      ans.pop();
    } else {
      ans.push(c);
    }
  }
  return ans.join('');
}
impl Solution {
  pub fn remove_stars(s: String) -> String {
    let mut ans = String::new();
    for &c in s.as_bytes().iter() {
      if c == b'*' {
        ans.pop();
      } else {
        ans.push(char::from(c));
      }
    }
    ans
  }
}
class Solution {
  /**
   * @param String $s
   * @return String
   */
  function removeStars($s) {
    $rs = [];
    for ($i = 0; $i < strlen($s); $i++) {
      if ($s[$i] == '*') {
        array_pop($rs);
      } else {
        array_push($rs, $s[$i]);
      }
    }
    return join($rs);
  }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文