在C++中,可以通過以下方法來判斷一個字符串是否為回文:
bool isPalindrome(string str) {
int start = 0;
int end = str.length() - 1;
while (start < end) {
if (str[start] != str[end]) {
return false;
}
start++;
end--;
}
return true;
}
bool isPalindrome(string str) {
if (str.length() <= 1) {
return true;
}
if (str[0] != str[str.length() - 1]) {
return false;
}
return isPalindrome(str.substr(1, str.length() - 2));
}
這兩種方法都可以判斷一個字符串是否為回文,具體使用哪種方法可以根據實際情況選擇。