码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode-Palindrome Number

时间:2014-09-11 20:53:22      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   ar   strong   div   sp   

Determine whether an integer is a palindrome. Do this without extra space.

click to show spoilers.

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?

There is a more generic way of solving this problem.

 

思路很简单,只要把这个数字逆序就行了 123--》321 ,如果回文,必然相等

翻了翻自己以前写的逆序代码,有点sb,不过思想是对的,代码简洁性有待提高啊

 1         public boolean isPalindrome(int x) {            
 2             //caculate the reverse of an integer 123 --> 321
 3             int reverse = 0;
 4             int temp = x;            
 5             if(x < 0){
 6                 return false;
 7             }
 8             while(temp > 0){                
 9                 reverse = reverse * 10 + temp%10;
10                 temp = temp / 10;
11             }
12             return reverse == x;
13         }

 

 

Leetcode-Palindrome Number

标签:style   blog   http   color   io   ar   strong   div   sp   

原文地址:http://www.cnblogs.com/dijkstra-c/p/3967155.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!