LeetCode-Number of 1 Bits
文章目录
Problem:
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.
思路
- 使用移位操作,每次将最后的最低位累加
- 我想说一模一样的代码,
Java
和C++
的执行效率真的相差挺大
1 | class Solution { |
the Runetime is 10ms
1 | public class Solution { |
the Runtime is 239ms
本作品采用[知识共享署名-非商业性使用-相同方式共享 2.5]中国大陆许可协议进行许可,我的博客欢迎复制共享,但在同时,希望保留我的署名权kubiCode,并且,不得用于商业用途。如您有任何疑问或者授权方面的协商,请给我留言。