返回介绍

lcci / 05.07.Exchange / README_EN

发布于 2024-06-17 01:04:43 字数 2058 浏览 0 评论 0 收藏 0

05.07. Exchange

中文文档

Description

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.

Solutions

Solution 1

class Solution:
  def exchangeBits(self, num: int) -> int:
    return ((num & 0x55555555) << 1) | ((num & 0xAAAAAAAA) >> 1)
class Solution {
  public int exchangeBits(int num) {
    return ((num & 0x55555555) << 1) | ((num & 0xaaaaaaaa)) >> 1;
  }
}
class Solution {
public:
  int exchangeBits(int num) {
    return ((num & 0x55555555) << 1) | ((num & 0xaaaaaaaa)) >> 1;
  }
};
func exchangeBits(num int) int {
  return ((num & 0x55555555) << 1) | (num&0xaaaaaaaa)>>1
}
impl Solution {
  pub fn exchange_bits(mut num: i32) -> i32 {
    let mut res = 0;
    let mut i = 0;
    while num != 0 {
      let a = num & 1;
      num >>= 1;
      let b = num & 1;
      num >>= 1;
      res |= a << (i + 1);
      res |= b << i;
      i += 2;
    }
    res
  }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文