class Solution { public: int NumberOf1(int n) { int rt=0; while(n) { rt++; n=(n-1)&n; } return rt; } };
剑指offer书上有。