9. Palindrome Number
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了9. Palindrome Number相关的知识,希望对你有一定的参考价值。
鏍囩锛?/p>
Determine whether an integer is a palindrome. Do this without extra space.
Some hints:
Could negative integers be palindromes? (ie, -1)
If you are thinking of converting the integer to string, note the restriction of using extra space.
You could also try reversing an integer. However, if you have solved the problem "Reverse Integer", you know that the reversed integer might overflow. How would you handle such case?
棰樼洰锛氬垽鏂暣鏁版槸涓嶆槸鍥炴枃鏁?/p>
1 bool isPalindrome(int x) { 2 int temp; 3 int n = 0; 4 temp = x; 5 if(x < 0) 6 return 0; 7 while(temp) 8 { 9 n = n*10 + temp % 10; 10 temp = temp /10; 11 } 12 return (n == x); 13 }
以上是关于9. Palindrome Number的主要内容,如果未能解决你的问题,请参考以下文章