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

leetcode palindrome number

时间:2014-10-26 08:00:01      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:blog   java   sp   div   log   as   tt   leetcode   方法   

1,采用reverse的方法,来比较是不是palindrome

2,reverse number的方法!!

3,还要记得负数的情况

package Leetcode;

public class PalindromeNumber {
public boolean isPalindrome(int x) {
       if(x<0){
    	   return false;
       } 
       return x==reverse(x);
    }
public int reverse(int x){
	int temp=0;
	while(x!=0){
		temp=temp*10+x%10;
		x=x/10;
	}
	return temp;	
}
}

  

leetcode palindrome number

标签:blog   java   sp   div   log   as   tt   leetcode   方法   

原文地址:http://www.cnblogs.com/lilyfindjobs/p/4051349.html

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