当前位置:网站首页>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;
}
};
关于位运算(按位与、按位或、异或)可看 位运算(按位与、按位或、异或)
边栏推荐
猜你喜欢
演讲议题及嘉宾重磅揭晓,TDengine 开发者大会推动数据技术“破局”
Matlab paper illustration drawing template No. 42 - bubble matrix diagram (correlation coefficient matrix diagram)
【飞控开发高级教程3】疯壳·开源编队无人机-定高、定点、悬停
async 和 await 原来这么简单
力扣203-移除链表元素——链表
2022 年值得尝试的 7 个 MQTT 客户端工具
ECCV 2022 Oral | 满分论文!视频实例分割新SOTA: IDOL
百利药业IPO过会:扣非后年亏1.5亿 奥博资本是股东
JS 内置构造函数 扩展 prototype 继承 借用构造函数 组合式 原型式creat 寄生式 寄生组合式 call apply instanceof
EMQX Newsletter 2022-07|EMQX 5.0 正式发布、EMQX Cloud 新增 2 个数据库集成
随机推荐
ES6--剩余参数
tRNA甲基化偶联3-甲基胞嘧啶(m3C)|tRNA-m3C (3-methylcy- tidine)
JS 内置构造函数 扩展 prototype 继承 借用构造函数 组合式 原型式creat 寄生式 寄生组合式 call apply instanceof
Statistical machine learning 】 【 linear regression model
【leetcode】剑指 Offer II 007. 数组中和为 0 的三个数(双指针)
详解AST抽象语法树
友宏医疗与Actxa签署Pre-M Diabetes TM 战略合作协议
Line the last time the JVM FullGC make didn't sleep all night, collapse
Anaconda virtual environment migration
汉源高科8光口12电口交换机千兆8光8电12电16电网管型工业以太网交换机
从腾讯阿里等大厂出来创业搞 Web3、元宇宙的人在搞什么
ECCV2022 | 用于视频问题回答的视频图Transformer
List类的超详细解析!(超2w+字)
charles配置客户端请求全部不走缓存
ThreadLocal详解
染料修饰核酸RNA|[email protected] 610/[email protected] 594/Alexa 56
tensorflow-gpu2.4.1安装配置详细步骤
leetcode 2119. 反转两次的数字
不知道这4种缓存模式,敢说懂缓存吗?
LeetCode 899. 有序队列