1576. 替换所有的问号
1576. 替换所有的问号
题目
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'?'
.
题目大意
给你一个仅包含小写英文字母和 '?'
字符的字符串 s
,请你将所有的 '?'
转换为若干小写字母,使最终的字符串不包含任何 连续重复 的字符。
注意:你 不能 修改非 '?'
字符。
题目测试用例保证 除 '?'
字符 之外 ,不存在连续重复的字符。
在完成所有转换(可能无需转换)后返回最终的字符串。如果有多个解决方案,请返回其中任何一个。可以证明,在给定的约束条件下,答案总是存在的。
示例 1:
输入: s = "?zs"
输出: "azs"
解释: 该示例共有 25 种解决方案,从 "azs" 到 "yzs" 都是符合题目要求的。只有 "z" 是无效的修改,因为字符串 "zzs" 中有连续重复的两个 'z' 。
示例 2:
输入: s = "ubv?w"
输出: "ubvaw"
解释: 该示例共有 24 种解决方案,只有替换成 "v" 和 "w" 不符合题目要求。因为 "ubvvw" 和 "ubvww" 都包含连续重复的字符。
提示:
1 <= s.length <= 100
s
仅包含小写英文字母和'?'
字符
解题思路
定义辅助函数
getChar(char1, char2)
:- 根据左右相邻字符
char1
和char2
,选择一个与它们都不同的字符。 - 优先选择字符
'a'
,如果不可用,则尝试'b'
,最后选择'c'
。
- 根据左右相邻字符
遍历字符串:
- 使用一个数组
chars
,存储分割后的字符串,减少额外的字符串拼接操作。 - 对数组
chars
的每个字符:- 如果当前字符是
?
,通过getChar
函数计算其替换值,并更新到chars
中。 - 如果当前字符不是
?
,不做处理。
- 如果当前字符是
- 使用一个数组
返回结果:
- 最终将
chars
构建字符串返回。
- 最终将
复杂度分析
- 时间复杂度:
O(n)
,需要遍历字符串一次,且辅助函数getChar
的操作是常量时间。 - 空间复杂度:
O(n)
,用于存储字符数组。
代码
/**
* @param {string} s
* @return {string}
*/
var modifyString = function (s) {
const getChar = (char1, char2) => {
if (char1 !== 'a' && char2 !== 'a') return 'a';
if (char1 !== 'b' && char2 !== 'b') return 'b';
return 'c';
};
const chars = s.split(''); // 将字符串转为字符数组
for (let i = 0; i < chars.length; i++) {
if (chars[i] === '?') {
const prev = chars[i - 1] || ''; // 左侧字符
const next = chars[i + 1] || ''; // 右侧字符
chars[i] = getChar(prev, next);
}
}
return chars.join(''); // 将字符数组重新拼接为字符串
};