加载中...
面试题 05.07-配对交换(Exchange LCCI)
发表于:2021-12-03 | 分类: 简单
字数统计: 356 | 阅读时长: 1分钟 | 阅读量:

原文链接: https://leetcode-cn.com/problems/exchange-lcci

英文原文

Write a program to swap odd and even bits in an integer with as few instructions as possible (e.g., bit 0 and bit 1 are swapped, bit 2 and bit 3 are swapped, and so on).

Example1:

 Input: num = 2(0b10)
 Output 1 (0b01)

Example2:

 Input: num = 3
 Output: 3

Note:

  1. 0 <= num <= 2^30 - 1
  2. The result integer fits into 32-bit integer.

中文题目

配对交换。编写程序,交换某个整数的奇数位和偶数位,尽量使用较少的指令(也就是说,位0与位1交换,位2与位3交换,以此类推)。

示例1:

 输入:num = 2(或者0b10)
 输出 1 (或者 0b01)

示例2:

 输入:num = 3
 输出:3

提示:

  1. num的范围在[0, 2^30 - 1]之间,不会发生整数溢出。

通过代码

高赞题解

class Solution {
    public int exchangeBits(int num) {
        //奇数
        int odd = num & 0x55555555;
        //偶数
        int even = num & 0xaaaaaaaa;
        odd = odd << 1;
        even = even >>> 1;
        return odd | even;
    }
}

思路的话就是分别取出奇数位和偶数位,移动后做或运算。
题目规定 num 是int范围的数
0x55555555 = 0b0101_0101_0101_0101_0101_0101_0101_0101
0xaaaaaaaa = 0b1010_1010_1010_1010_1010_1010_1010_1010

用这两个数做与运算,就可以把奇数位和偶数位取出来,
然后位左移奇数位,右移偶数位,
再把 奇数位和偶数位做或运算。

统计信息

通过次数 提交次数 AC比率
12110 17186 70.5%

提交历史

提交时间 提交结果 执行时间 内存消耗 语言
上一篇:
面试题 05.06-整数转换(Convert Integer LCCI)
下一篇:
面试题 05.04-下一个数(Closed Number LCCI)
本文目录
本文目录