LeetCode 1578.替换所有的问号

原题链接:LeetCode 1578.替换所有的问号

Given a string s containing only lowercase English letters and the ’?' character, convert all the ‘?’ characters into lowercase letters such that the final string does not contain any consecutive repeating characters. You cannot modify the non ‘?’ characters.

It is guaranteed that there are no consecutive repeating characters in the given string except for ‘?’.

Return the final string after all the conversions (possibly zero) have been made. If there is more than one solution, return any of them. It can be shown that an answer is always possible with the given constraints.

Example 1:

Input: s = “?zs
Output:azs
Explanation: There are 25 solutions for this problem. From “azs” to “yzs”, all are valid. Only “z” is an invalid modification as the string will consist of consecutive repeating characters in “zzs”.

Example 2:

Input: s = “ubv?w
Output:ubvaw
Explanation: There are 24 solutions for this problem. Only “v” and “w” are invalid modifications as the strings will consist of consecutive repeating characters in “ubvvw” and “ubvww”.

Constraints:

  • 1 <= s.length <= 100
  • s consist of lowercase English letters and ‘?’.

思路:
替换字符只要和他前后都不一样就可以,因此用a、b、c就足够
遍历a、b、c,和它前后都不一样的时候,替换即可


c++实现:

class Solution {
public:
    string modifyString(string s) {
        for(int i = 0; i < s.length(); i ++ ){
            if(s[i] == '?'){
                for(char c = 'a'; c <= 'c'; ++c){
                    if((i > 0 && s[i-1] == c) || (i < s.length()-1 && s[i+1] == c))
                        continue;
                    s[i] = c;
                    break;
                }   
            }
        }
        return s;
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值