码迷,mamicode.com
首页 > 其他好文 > 详细

Number of 1 Bits

时间:2015-06-09 23:37:44      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

技术分享
 1 typedef unsigned int uint32_t;
 2 class Solution {
 3 public:
 4     int hammingWeight(uint32_t n) {
 5         int tot=0;
 6         while(n)
 7         {
 8             tot+=n%2;
 9             n>>=1;
10         }
11         return tot;
12     }
13 };
View Code

 这是一道微软的面试题,判断末位是否为1 ,可以用&运算,官方答案是n&(n-1),判断是否为0 ,可以用n&(-n)

Number of 1 Bits

标签:

原文地址:http://www.cnblogs.com/varcom/p/4564789.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!