• LeetCode每日一题(833. Find And Replace in String)


    You are given a 0-indexed string s that you must perform k replacement operations on. The replacement operations are given as three 0-indexed parallel arrays, indices, sources, and targets, all of length k.

    To complete the ith replacement operation:

    Check if the substring sources[i] occurs at index indices[i] in the original string s.
    If it does not occur, do nothing.
    Otherwise if it does occur, replace that substring with targets[i].
    For example, if s = “abcd”, indices[i] = 0, sources[i] = “ab”, and targets[i] = “eee”, then the result of this replacement will be “eeecd”.

    All replacement operations must occur simultaneously, meaning the replacement operations should not affect the indexing of each other. The testcases will be generated such that the replacements will not overlap.

    For example, a testcase with s = “abc”, indices = [0, 1], and sources = [“ab”,“bc”] will not be generated because the “ab” and “bc” replacements overlap.
    Return the resulting string after performing all replacement operations on s.

    A substring is a contiguous sequence of characters in a string.

    Example 1:

    Input: s = “abcd”, indices = [0, 2], sources = [“a”, “cd”], targets = [“eee”, “ffff”]
    Output: “eeebffff”

    Explanation:
    “a” occurs at index 0 in s, so we replace it with “eee”.
    “cd” occurs at index 2 in s, so we replace it with “ffff”.

    Example 2:

    Input: s = “abcd”, indices = [0, 2], sources = [“ab”,“ec”], targets = [“eee”,“ffff”]
    Output: “eeecd”

    Explanation:
    “ab” occurs at index 0 in s, so we replace it with “eee”.
    “ec” does not occur at index 2 in s, so we do nothing.

    Constraints:

    • 1 <= s.length <= 1000
    • k == indices.length == sources.length == targets.length
    • 1 <= k <= 100
    • 0 <= indexes[i] < s.length
    • 1 <= sources[i].length, targets[i].length <= 50
    • s consists of only lowercase English letters.
    • sources[i] and targets[i] consist of only lowercase English letters.

    单纯动手的题, 好想,不好实现。首先将 indices、sources、targets 组合起来进行排序, 然后遍历 s, 遇到 indices 里的 index 就检查是否符合 source, 如果符合则往答案中 push target, 并且 i += source.len(), 如果不符合则 push current_char, i += 1。注意各种数组越界检查


    
    impl Solution {
        pub fn find_replace_string(
            s: String,
            indices: Vec<i32>,
            sources: Vec<String>,
            targets: Vec<String>,
        ) -> String {
            let mut l: Vec<(i32, String, String)> = indices
                .into_iter()
                .zip(sources)
                .zip(targets)
                .map(|((i, s), t)| (i, s, t))
                .collect();
            l.sort();
            let mut ans = String::new();
            let chars: Vec<char> = s.chars().collect();
            let mut i = 0;
            while i < chars.len() {
                if !l.is_empty() && i == l[0].0 as usize {
                    let (_, src, tgt) = l.remove(0);
                    if i + src.len() <= chars.len() {
                        let ss: String = chars[i..i + src.len()].into_iter().collect();
                        if ss == src {
                            ans.push_str(&tgt);
                            i += src.len();
                            continue;
                        }
                    }
                }
                ans.push(chars[i]);
                i += 1;
            }
            ans
        }
    }
    
    • 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
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
  • 相关阅读:
    π220N31兼容代替TI ISO1540DR 低功耗 3.0kVrms 双向I2C 隔离器
    python中的range函数|python中的range函数|range()函数详解|Python中range(len())的用法
    JS正则表达式
    基于nodejs+vue驾校预约管理系统
    CSS处理器-Less/Scss
    Spring源码深度解析:九、bean的获取② - createBeanInstance
    关于四元数归一化
    20231017定时任务
    EMMC模块电路的PCB设计建议
    Excel永远不会消亡!
  • 原文地址:https://blog.csdn.net/wangjun861205/article/details/127648464