Leetcode.9. 回文数---双指针

9. 回文数

给你一个整数 x ,如果 x 是一个回文整数,返回 true ;否则,返回 false 。

回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。例如,121 是回文,而 123 不是。

示例 1:

输入:x = 121
输出:true
示例 2:

输入:x = -121
输出:false
解释:从左向右读,-121 。 从右向左读,121- 。因此它不是一个回文数。
示例 3:

输入:x = 10
输出:false
解释:从右向左读,01 。因此它不是一个回文数。
示例 4:

输入:x = -101
输出:false
 

提示:

-231 <= x <= 231 - 1
 

进阶:你能不将整数转为字符串来解决这个问题吗?

题解:

将整数的每一个数字单独提取出来放到数组中,再使用双指针的思想头尾比较即可,注意负数一定返回false;

代码:

class Solution {
    
    
    public boolean isPalindrome(int x) {
    
    
        if(x<0){
    
    
            return false;
        }
        
        int[] res = new int[15];
        int top = 0;
        while(x!=0){
    
    
            int temp = x%10;
            res[top++] = temp;
            x/=10;
        }

        for(int i=0,j=top-1;i<j;i++,j--){
    
    
            if(res[i]!=res[j]){
    
    
                return false;
            }
        }

        return true;

    }
}

猜你喜欢

转载自blog.csdn.net/xiangguang_fight/article/details/119762337