返回介绍

solution / 2700-2799 / 2788.Split Strings by Separator / README

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

2788. 按分隔符拆分字符串

English Version

题目描述

给你一个字符串数组 words 和一个字符 separator ,请你按 separator 拆分 words 中的每个字符串。

返回一个由拆分后的新字符串组成的字符串数组,不包括空字符串

注意

  • separator 用于决定拆分发生的位置,但它不包含在结果字符串中。
  • 拆分可能形成两个以上的字符串。
  • 结果字符串必须保持初始相同的先后顺序。

 

示例 1:

输入:words = ["one.two.three","four.five","six"], separator = "."
输出:["one","two","three","four","five","six"]
解释:在本示例中,我们进行下述拆分:

"one.two.three" 拆分为 "one", "two", "three"
"four.five" 拆分为 "four", "five"
"six" 拆分为 "six" 

因此,结果数组为 ["one","two","three","four","five","six"] 。

示例 2:

输入:words = ["$easy$","$problem$"], separator = "$"
输出:["easy","problem"]
解释:在本示例中,我们进行下述拆分:

"$easy$" 拆分为 "easy"(不包括空字符串)
"$problem$" 拆分为 "problem"(不包括空字符串)

因此,结果数组为 ["easy","problem"] 。

示例 3:

输入:words = ["|||"], separator = "|"
输出:[]
解释:在本示例中,"|||" 的拆分结果将只包含一些空字符串,所以我们返回一个空数组 [] 。 

 

提示:

  • 1 <= words.length <= 100
  • 1 <= words[i].length <= 20
  • words[i] 中的字符要么是小写英文字母,要么就是字符串 ".,|$#@" 中的字符(不包括引号)
  • separator 是字符串 ".,|$#@" 中的某个字符(不包括引号)

解法

方法一:模拟

我们遍历字符串数组 $words$,对于每个字符串 $w$,我们使用 separator 作为分隔符进行拆分,如果拆分后的字符串不为空,则将其加入答案数组。

时间复杂度 $O(n \times m)$,空间复杂度 $O(m)$,其中 $n$ 是字符串数组 $words$ 的长度,而 $m$ 是字符串数组 $words$ 中字符串的最大长度。

class Solution:
  def splitWordsBySeparator(self, words: List[str], separator: str) -> List[str]:
    return [s for w in words for s in w.split(separator) if s]
import java.util.regex.Pattern;

class Solution {
  public List<String> splitWordsBySeparator(List<String> words, char separator) {
    List<String> ans = new ArrayList<>();
    for (var w : words) {
      for (var s : w.split(Pattern.quote(String.valueOf(separator)))) {
        if (s.length() > 0) {
          ans.add(s);
        }
      }
    }
    return ans;
  }
}
class Solution {
public:
  vector<string> splitWordsBySeparator(vector<string>& words, char separator) {
    vector<string> ans;
    for (const auto& w : words) {
      istringstream ss(w);
      string s;
      while (getline(ss, s, separator)) {
        if (!s.empty()) {
          ans.push_back(s);
        }
      }
    }
    return ans;
  }
};
func splitWordsBySeparator(words []string, separator byte) (ans []string) {
  for _, w := range words {
    for _, s := range strings.Split(w, string(separator)) {
      if s != "" {
        ans = append(ans, s)
      }
    }
  }
  return
}
function splitWordsBySeparator(words: string[], separator: string): string[] {
  return words.flatMap(w => w.split(separator).filter(s => s.length > 0));
}

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

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

发布评论

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