返回介绍

lcci / 05.06.Convert Integer / README_EN

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

05.06. Convert Integer

中文文档

Description

Write a function to determine the number of bits you would need to flip to convert integer A to integer B.

Example1:




 Input: A = 29 (0b11101), B = 15 (0b01111)



 Output: 2



Example2:




 Input: A = 1,B = 2



 Output: 2



Note:

  1. -2147483648 <= A, B <= 2147483647

Solutions

Solution 1: Bit Manipulation

We perform a bitwise XOR operation on A and B. The number of $1$s in the result is the number of bits that need to be changed.

The time complexity is $O(\log n)$, where $n$ is the maximum value of A and B. The space complexity is $O(1)$.

class Solution:
  def convertInteger(self, A: int, B: int) -> int:
    A &= 0xFFFFFFFF
    B &= 0xFFFFFFFF
    return (A ^ B).bit_count()
class Solution {
  public int convertInteger(int A, int B) {
    return Integer.bitCount(A ^ B);
  }
}
class Solution {
public:
  int convertInteger(int A, int B) {
    unsigned int c = A ^ B;
    return __builtin_popcount(c);
  }
};
func convertInteger(A int, B int) int {
  return bits.OnesCount32(uint32(A ^ B))
}
function convertInteger(A: number, B: number): number {
  let res = 0;
  while (A !== 0 || B !== 0) {
    if ((A & 1) !== (B & 1)) {
      res++;
    }
    A >>>= 1;
    B >>>= 1;
  }
  return res;
}
impl Solution {
  pub fn convert_integer(a: i32, b: i32) -> i32 {
    (a ^ b).count_ones() as i32
  }
}

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

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

发布评论

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