标签:
根据这样的规律我们可以很容易的实现这道题目的最优解。
int count_one(int n) { int count = 0; while (n) { n = n&(n - 1); count++; } return count; }
剑指offer-第十题方法总结
原文地址:http://blog.csdn.net/lf_2016/article/details/51443657