LeetCode 2788.按分隔符拆分字符串:模拟(字符串处理)

【LetMeFly】2788.按分隔符拆分字符串:模拟(字符串处理)

力扣题目链接:https://leetcode.cn/problems/split-strings-by-separator/

给你一个字符串数组 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 是字符串 ".,|$#@" 中的某个字符(不包括引号)

方法一:模拟

新建一个空的字符串数组作为答案,遍历字符串数组的所有字符串,使用一个变量last记录上一个separator的位置(初始值为-1)。

接着遍历这个字符串的每一个字符,如果遍历到了字符串尾或当前字符为separator,就看当前下标和last之间是否有字符存在。若有,则添加到答案数组中。

最终返回答案数组即为答案。

  • 时间复杂度 O ( s u m c h a r a c t e r ( w o r d s ) ) O(sum_character(words)) O(sumcharacter(words)),时间复杂度为字符串数组中字符串的个数
  • 空间复杂度 O ( 1 ) O(1) O(1),力扣的算法返回值不计入算法的空间复杂的

AC代码

C++
cpp 复制代码
class Solution {
public:
    vector<string> splitWordsBySeparator(vector<string>& words, char separator) {
        vector<string> ans;
        for (string& word : words) {
            int last = -1;
            for (int i = 0; i <= word.size(); i++) {
                if (i == word.size() || word[i] == separator) {
                    if (i - last > 1) {
                        ans.push_back(word.substr(last + 1, i - last - 1));
                    }
                    last = i;
                }
            }
        }
        return ans;
    }
};
Python
python 复制代码
# from typing import List

class Solution:
    def splitWordsBySeparator(self, words: List[str], separator: str) -> List[str]:
        ans = []
        for word in words:
            splited = word.split(separator)
            for this in splited:  # 过滤空串
                if this:
                    ans.append(this)
        return ans

同步发文于CSDN,原创不易,转载经作者同意后请附上原文链接哦~

Tisfy:https://letmefly.blog.csdn.net/article/details/135724019

相关推荐
师太,答应老衲吧2 小时前
SQL实战训练之,力扣:2020. 无流量的帐户数(递归)
数据库·sql·leetcode
passer__jw76710 小时前
【LeetCode】【算法】208. 实现 Trie (前缀树)
算法·leetcode
益达爱喝芬达11 小时前
力扣11.3
算法·leetcode
passer__jw76711 小时前
【LeetCode】【算法】406. 根据身高重建队列
算法·leetcode
__AtYou__11 小时前
Golang | Leetcode Golang题解之第535题TinyURL的加密与解密
leetcode·golang·题解
远望樱花兔11 小时前
【d63】【Java】【力扣】141.训练计划III
java·开发语言·leetcode
迃-幵12 小时前
力扣:225 用队列实现栈
android·javascript·leetcode
九圣残炎12 小时前
【从零开始的LeetCode-算法】3254. 长度为 K 的子数组的能量值 I
java·算法·leetcode
vir0213 小时前
找出目标值在数组中的开始和结束位置(二分查找)
数据结构·c++·算法·leetcode
lunjiahao14 小时前
GJ Round (2024.10) Round 8~21
笔记·题解·杂题