java 来自https://leetcode.com/problems/palindrome-number/#/description

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 来自https://leetcode.com/problems/palindrome-number/#/description相关的知识,希望对你有一定的参考价值。

public class Solution {
    public boolean isPalindrome(int x) {
        
        if (x< 0 || (x !=0 && x%10==0)){        // for -ve value, and if x!=0 but multiple of 10 (e.x 20,400etc.)
            return false;
        }
        
        int num = x/10;    
        if (num == 0){                          // for single digit number
            return true;
        }
        
        int half = 0;
        while(x > half){                        // remaining numbers
            half = half * 10 + x%10;
            x = x/10;
        }
        
        return( x == half || x == half/10);     // for even and odd length numbers
        
        
// ******** Answer using string, will need extra space        
        
        
//         String str = String.valueOf(x);
//         char[] charArray = str.toCharArray();
        
//         if (str.length() == 1){
//             return true;
//         }
        
//         int i = 0;
//         int j = str.length() -1;
        
//         while (i<j) {
//             if (charArray[i] == charArray[j]){
//                 i++;
//                 j--;
//             }
//             else{
//                 return false;
//             }
//         }
        
//         return true;
    }
}

以上是关于java 来自https://leetcode.com/problems/palindrome-number/#/description的主要内容,如果未能解决你的问题,请参考以下文章

20-05-01

两数之和(LeetCode)

leetcode刷题两数之和

算法leetcode|剑指 Offer 27. 二叉树的镜像|226. 翻转二叉树(rust很强)

算法leetcode|剑指 Offer 27. 二叉树的镜像|226. 翻转二叉树(rust很强)

算法leetcode|剑指 Offer 27. 二叉树的镜像|226. 翻转二叉树(rust很强)