LeetCode:Palindrome Number
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode:Palindrome Number相关的知识,希望对你有一定的参考价值。
Palindrome Number:Determine whether an integer is a palindrome. Do this without extra space.
题意:判断一个整数是否是回文数,且不可以使用额外的空间。
思路:首先负数不是回文数,然后每次取出数的最高位和最低位,进行判断。
代码:
public class Solution { public boolean isPalindrome(int x) { if(x<0) return false; int div = 1; while(x/div >=10){ div *= 10; } while(x!=0){ int left = x/div; //求出最高位 int right = x%10; //求出最低位 if(left!=right) return false; //进行判断 x = (x%div) / 10; // 更新x div/=100; } return true; } }
以上是关于LeetCode:Palindrome Number的主要内容,如果未能解决你的问题,请参考以下文章