Leetcode 833. 字符串中的查找与替换 C++

Leetcode 833. 字符串中的查找与替换

题目

对于某些字符串 S,我们将执行一些替换操作,用新的字母组替换原有的字母组(不一定大小相同)。

每个替换操作具有 3 个参数:起始索引 i,源字 x 和目标字 y。规则是如果 x 从原始字符串 S 中的位置 i 开始,那么我们将用 y 替换出现的 x。如果没有,我们什么都不做。

举个例子,如果我们有 S = “abcd” 并且我们有一些替换操作 i = 2,x = “cd”,y = “ffff”,那么因为 “cd” 从原始字符串 S 中的位置 2 开始,我们将用 “ffff” 替换它。

再来看 S = “abcd” 上的另一个例子,如果我们有替换操作 i = 0,x = “ab”,y = “eee”,以及另一个替换操作 i = 2,x = “ec”,y = “ffff”,那么第二个操作将不执行任何操作,因为原始字符串中 S[2] = ‘c’,与 x[0] = ‘e’ 不匹配。

所有这些操作同时发生。保证在替换时不会有任何重叠: S = “abc”, indexes = [0, 1], sources = [“ab”,“bc”] 不是有效的测试用例。

测试样例

示例 1:

输入:S = "abcd", indexes = [0,2], sources = ["a","cd"], targets = ["eee","ffff"]
输出:"eeebffff"
解释:
"a" 从 S 中的索引 0 开始,所以它被替换为 "eee"。
"cd" 从 S 中的索引 2 开始,所以它被替换为 "ffff"。

示例 2:

输入:S = "abcd", indexes = [0,2], sources = ["ab","ec"], targets = ["eee","ffff"]
输出:"eeecd"
解释:
"ab" 从 S 中的索引 0 开始,所以它被替换为 "eee"。
"ec" 没有从原始的 S 中的索引 2 开始,所以它没有被替换。

提示:

  • 0 <= indexes.length = sources.length = targets.length <= 100
  • 0 <indexes[i] < S.length <= 1000
  • 给定输入中的所有字符都是小写字母。

题解

我们首先将替换操作按照规定下标位置进行升序排列。然后我们用一个变量expand记录最初S的下标的改变量。也就是说,如果index发生了替换,由target替换source,那么index之后的下标就向后了expand个单位,也就是words[i].target.length() - words[i].source.length()个单位。我们从改变位置进行检查匹配,是否和替换操作中的source一致,一致则发生替换。详细过程见代码

代码

class Word{
public:
    int index;
    string source;
    string target;
    Word(int index,string source,string target){
        this->index = index;
        this->source = source;
        this->target = target;
    }
    bool operator < (const Word w) const{
        return index < w.index;
    }
};
bool sortP(pair<int,string>& p1,pair<int,string>& p2){
    return p1.first < p2.first;
}
class Solution {
public:
    string findReplaceString(string S, vector<int>& indexes, vector<string>& sources, vector<string>& targets) {
        vector<Word> words;
        int n = indexes.size();
        for(int i=0; i<n; i++)
            words.push_back(Word(indexes[i],sources[i],targets[i]));
        sort(words.begin(),words.end());
        int expand = 0;
        for(int i=0; i<n; i++){
            int index = words[i].index+expand,j;
            for(j=0; j<words[i].source.length(); j++){
                if(S[index] == words[i].source[j])
                    index++;
                else    break;
            }
            if(j == words[i].source.length()){
                S = S.substr(0,words[i].index+expand) + words[i].target + S.substr(index);
                expand += words[i].target.length() - words[i].source.length();
            }
        }
        return S;
    }
};

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/find-and-replace-in-string
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值