问题: Determine whether an integer is a palindrome. Do this without extra space. 官方难度: Easy 翻译: 不使用额外空间,判断一个数是不是回文形式. 暂定负数不参与讨论. 先获取数值长度,取得对应位置的数字比较. 重点是如何取到一个整数指定位置的数字,通过(x/Math.pow(10,n-1))%10来实现. 循环至一半就可以退出. 解题代码: public static boolean isPalindrome(…