力扣:数字的位操作问题总结(7、9、190)

一、数字的位操作问题

有一类力扣题,要求我们对数字的每一位进行操作。

比如:将123转化为321。

二、力扣题

1.7. 整数反转

  • 通解
class Solution {
    public int reverse(int x) {
        /* 按位操作 */
        /*
        *关键:处理溢出
        *2,147,483,647
        */
        int res = 0;
        while(x != 0) {
            int rest = x % 10;
            // 判断正数是否溢出
            if(res > 0 && res > (Integer.MAX_VALUE - rest) / 10)
                return 0;
            //判断负数是否溢出
            if(res < 0 && res < (Integer.MIN_VALUE -rest) / 10)
                return 0;
            res = res * 10 + rest;
            x /= 10;
        }
        return res;
    }
}

2.9. 回文数

  • 通解
class Solution {
    public boolean isPalindrome(int x) {
        if(x == 0) return true;
        if(x < 0 || x % 10 == 0) return false;
        int res = 0;
        while(x > res) {
            res = res * 10 + x % 10;
            x /= 10;
        }
        return x == res || res / 10 == x;
    }
}

3.190. 颠倒二进制位

  • 通解
public class Solution {
    // you need treat n as an unsigned value
    public int reverseBits(int n) {
        if(n == 0) return n;
        int res = 0;
        for(int i = 0; i < 32; i++) {
            res = (res << 1) | (n & 1);
            n = n >> 1;
        }
        return res;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值