位运算第二题 随便看看
class Solution {
public:
     int  NumberOf1(int n) {
         int ans = 0;
         // 不是算法了 就认识& 的功能
         while (n != 0) {
             ++ans;
             n = n & (n-1);
         }
         return ans;
     }
};