标签:
1 public class Solution { 2 public int NumberOf1(int n) { 3 int count = 0 ; 4 while(n!=0){ 5 count++ ; 6 n = n&(n-1) ; 7 } 8 return count ; 9 }
【剑指offer】七,二进制表示中1的个数
原文地址:http://www.cnblogs.com/huntertoung/p/4760034.html