标签:style blog color sp div log bs as nbsp
Determine whether an integer is a palindrome. Do this without extra space.
因为都额外空间有限制所以不能把他先转成字符串然后用两个指针扫了。负数不算回文数是因为前面多了个负号么=_= 这样的话我只能想到一个办法,就是反转一个数字,同时检查他是否溢出,溢出则返回false,否则对比反转后的数字是否跟原来的数字相等,相等则是回文数。
bool isPalindrome(int x) { if (x < 0) return false; int t = x; int v = 0; while (t) { if (v / 10 > INT_MAX) return false; v = v * 10 + (t % 10); t /= 10; } if (v == x) return true; return false; }
标签:style blog color sp div log bs as nbsp
原文地址:http://www.cnblogs.com/agentgamer/p/4109965.html