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

191. 位1的个数

时间:2020-04-04 00:27:55      阅读:61      评论:0      收藏:0      [点我收藏+]

标签:return   color   code   nbsp   +=   ++   bsp   mingw   weight   

 1 class Solution 
 2 {
 3 public:
 4     int hammingWeight(uint32_t n) 
 5     {
 6         int res = 0;
 7         for(int i = 0;i < 32;i ++) res += (n >> i) & 1;
 8         return res;
 9     }
10 };

 

191. 位1的个数

标签:return   color   code   nbsp   +=   ++   bsp   mingw   weight   

原文地址:https://www.cnblogs.com/yuhong1103/p/12629576.html

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