标签:
int oneNumInBinary(int n){ int cnt=0; while(n){ n = n&(n-1); cnt++; } return cnt; }
C++求一个十进制的二进制中1的个数
原文地址:http://www.cnblogs.com/Chilly2015/p/5722978.html