题目描述
输入一个整数,输出该数二进制表示中1的个数。其中负数用补码表示。
考位运算的题目,这里贴一个关于简单位运算概念的链接:https://github.com/CyC2018/CS-Notes/blob/master/notes/Leetcode%20%E9%A2%98%E8%A7%A3%20-%20%E4%BD%8D%E8%BF%90%E7%AE%97.md
代码:
class Solution { public: int NumberOf1(int n) { int count = 0; int flag = 1; /*while (flag != 0) { if ((n & flag) != 0) { count++; } flag = flag << 1; //flag == 0表示遍历完int类型二进制表示的所有位了 }*/ while(n != 0){ count++; n &= n - 1; } return count; } };
原文地址:https://www.cnblogs.com/BillowJ/p/12702312.html
时间: 2024-11-04 16:58:38