其实不用考虑奇数长度还是偶数长度。
class Solution {
public:
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param str string字符串 待判断的字符串
* @return bool布尔型
*/
bool judge(string str) {
// write code here
int n = str.size();
int start = 0;
int end = n-1;
while(start <= end){
if(n % 2 ==0 && start == end)
break;
if(str[start++] != str[end--])
return false;
}
return true;
}
};
while(start<end),即,没有等号,也没有考虑长度的奇偶。