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

191. Number of 1 Bits

时间:2016-07-21 07:38:12      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:

哈哈自己一遍写好~开心!

就是一位一位数,最后一位的取法是 num & 1,如果是1就计数,然后去掉最后一位 n >> 1没啦~

 1     // you need to treat n as an unsigned value
 2     public int hammingWeight(int n) {
 3         int cnt = 0;
 4         for(int i = 1; i <= 32; i++) {
 5             if((n & 1) == 1) {
 6                 cnt++;
 7             }
 8             n = n >> 1;
 9         }
10         return cnt;
11     }

 

191. Number of 1 Bits

标签:

原文地址:http://www.cnblogs.com/warmland/p/5690364.html

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