leetcode 9 Palindrome Number

class Solution {
public:
bool isPalindrome(int x) {

//negative number
if(x < 0)
return false;

int len = 1;
while(x / len >= 10)
len *= 10;

while(x > 0) {

//get the head and tail number
int left = x / len;
int right = x % 10;

if(left != right)
return false;
else {
//remove the head and tail number
x = (x % len) / 10;
len /= 100;
}
}

return true;
}
};

原文地址:https://www.cnblogs.com/wangkun1993/p/6360352.html