Write a function that takes an unsigned integer and returns the number of ’1’ bits it has (also known as the Hamming weight).
For example, the 32-bit integer ’11’ has binary representation 00000000000000000000000000001011, so the function should return 3.
Credits:
Special thanks to @ts for adding this problem and creating all test cases.
先科普一个按位与的问题:
System.out.println("---" + (1100010011 & 1));
这个输出是 1

这篇博客介绍了如何编写一个函数,该函数接收一个无符号整数并返回其二进制表示中1的个数,即汉明重量。通过示例和不同的解决方案,包括按位操作和循环翻转的方法,来阐述这个问题。
订阅专栏 解锁全文

被折叠的 条评论
为什么被折叠?



