917. Reverse Only Letters*
https://leetcode.com/problems/reverse-only-letters/
题目描述
Given a string S, return the “reversed” string where all characters that are not a letter stay in the same place, and all letters reverse their positions.
Example 1:
Input: "ab-cd"
Output: "dc-ba"
Example 2:
Input: "a-bC-dEf-ghIj"
Output: "j-Ih-gfE-dCba"
Example 3:
Input: "Test1ng-Leet=code-Q!"
Output: "Qedo1ct-eeLg=ntse-T!"
Note:
S.length <= 10033 <= S[i].ASCIIcode <= 122Sdoesn’t contain\or"
C++ 实现 1
使用 letters 记录 S 中的所有 letters, 然后翻转后再填入到 S 中.
class Solution {
public:
string reverseOnlyLetters(string S) {
string letters;
for (auto &c : S) {
if ((65 <= c && c <= 90) || (97 <= c && c <= 122)) letters += c;
}
std::reverse(letters.begin(), letters.end());
int k = 0;
for (auto &c : S) {
if ((65 <= c && c <= 90) || (97 <= c && c <= 122))
c = letters[k++];
}
return S;
}
};
本文详细解析了LeetCode上的第917题“Reverse Only Letters”,介绍了一种有效的C++解决方案。该算法通过创建并反转字符串中的字母部分,保持非字母字符位置不变,从而实现题目要求。

152

被折叠的 条评论
为什么被折叠?



