当前位置:网站首页>Leetcode sword refers to Offer 15. 1 in the binary number
Leetcode sword refers to Offer 15. 1 in the binary number
2022-08-03 20:11:00 【Luna programming】
编写一个函数,输入是一个无符号整数(以二进制串的形式),返回其二进制表达式中数字位数为 ‘1’ 的个数(也被称为 汉明重量).).
示例 1:
输入:n = 11 (控制台输入 00000000000000000000000000001011)
输出:3
解释:输入的二进制串 00000000000000000000000000001011 中,共有三位为 ‘1’.
提示:
输入必须是长度为 32 的 二进制串 .
思路一:& 和 >> (使用 按位与 和 右移运算符 逐位判断)
时间复杂度:O(n)
空间复杂度:O(1)
class Solution {
public:
int hammingWeight(uint32_t n) {
int sum=0;
while(n){
sum+=(n&1); // (n&1) is to determine whether the last digit is1.按位与的运算规则是:2Only in the corresponding position of the base number2numbers are1,结果才为1
//因为1the binary representation of 32Only the last of the bits is1,所以前31Bitwise AND is followed by both0,Then it is to judge whether the last bit is all1,若都是1则为真, (n&1) 的值为1,否则为0
n>>=1; //右移1bit delete the last bit,高位正数补0,负数补1
}
return sum;
}
};
思路二:使用 n&(n-1)
class Solution {
public:
int hammingWeight(uint32_t n) {
int sum=0;
while(n){
n&=(n-1); //每一次的 n&=(n-1) 都将32rightmost of the bits1变为0,直到最后n为0
++sum;
}
return sum;
}
};
关于位运算(按位与、按位或、异或)可看 位运算(按位与、按位或、异或)
边栏推荐
猜你喜欢
随机推荐
1161 最大层内元素和——Leetcode天天刷【BFS】(2022.7.31)
ES6简介及let、var、const区别
Network protocol-TCP, UDP difference and TCP three-way handshake, four wave
The sword refers to Offer II 044. The maximum value of each level of the binary tree-dfs method
leetcode 461. 汉明距离
YARN功能介绍、交互流程及调度策略
数学之美 第六章——信息的度量和作用
matplotlib画polygon, circle
子结点的数量(2)
开源生态研究与实践| ChinaOSC
Auto.js脚本程序打包
149. 直线上最多的点数-并查集做法
Statistical machine learning 】 【 linear regression model
Use ControlTemplate or Style from resource file in WPF .cs and find the control
力扣203-移除链表元素——链表
Golang死信队列的使用
钱江摩托某型号产品ECU货不对版 消费者知情权应如何保障?
为什么 BI 软件都搞不定关联分析
Detailed demonstration pytorch framework implementations old photo repair (GPU)
【飞控开发高级教程4】疯壳·开源编队无人机-360 度翻滚









