当前位置:网站首页>[算法] 剑指offer2 golang 面试题3:前n个数字二进制形式中1的个数
[算法] 剑指offer2 golang 面试题3:前n个数字二进制形式中1的个数
2022-07-06 09:18:00 【邓嘉文Jarvan】
[算法] 剑指offer2 golang 面试题3:前n个数字二进制形式中1的个数
题目1:
给定一个非负整数 n ,请计算 0 到 n 之间的每个数字的二进制表示中 1 的个数,并输出一个数组。
示例 1:
输入: n = 2
输出: [0,1,1]
解释:
0 --> 0
1 --> 1
2 --> 10
示例 2:
输入: n = 5
输出: [0,1,1,2,1,2]
解释:
0 --> 0
1 --> 1
2 --> 10
3 --> 11
4 --> 100
5 --> 101
说明 :
0 <= n <= 105
func countBits(n int) []int {
}
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/w3tCBm
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
思路1:
思路1: 暴力计算每一个数字的每一位1的个数,时间复杂度 O(n*17),10^5 < ^17
代码
func countBits(n int) []int {
//思路1: 暴力计算每一个数字的每一位1的个数,时间复杂度 O(n*17),10^5 < ^17
//参数处理
if n == 0 {
return []int{
0}
}
res := make([]int,n+1)
for i:=0;i <=n;i++{
count := 0
for j:=0;j<17;j ++{
if i & (1 << j) != 0 {
count ++
}
}
res[i] = count
}
return res
}
测试
思路2:
// 要点: i&(i-1)就是比i中1少一个的数字
// 我们可以通过之前求到的i中1的个数来求,时间复杂度是 O(n)
代码2
func countBits(n int) []int {
// 要点: i&(i-1)就是比i中1少一个的数字
// 我们可以通过之前求到的i中1的个数来求,时间复杂度是 O(n)
if n == 0 {
return []int{
0}
}
res := make([]int,n+1)
res[0] = 0
for i:=1;i <=n;i++{
res[i] = res[i&(i-1)] + 1
}
return res
}
测试2
边栏推荐
- Force buckle 1189 Maximum number of "balloons"
- Vulnhub target: hacknos_ PLAYER V1.1
- Compilation principle: preprocessing of source program and design and implementation of lexical analysis program (including code)
- Unity3D制作注册登录界面,并实现场景跳转
- About using @controller in gateway
- KF UD分解之UD分解基础篇【1】
- FairyGUI循环列表
- Servlet
- MySQL shutdown is slow
- ORA-02030: can only select from fixed tables/views
猜你喜欢
基本Dos命令
Office提示您的许可证不是正版弹框解决
單片機藍牙無線燒錄
There is no red exclamation mark after SVN update
【干货】提升RTK模糊度固定率的建议之周跳探测
The master of double non planning left the real estate company and became a programmer with an annual salary of 25W. There are too many life choices at the age of 25
程序设计大作业:教务管理系统(C语言)
[Chongqing Guangdong education] Shandong University College Physics reference materials
NovAtel 板卡OEM617D配置步骤记录
rtklib单点定位spp使用抗差估计遇到的问题及解决
随机推荐
KF UD分解之伪代码实现进阶篇【2】
Unity3D,阿里云服务器,平台配置
Intermediate use tutorial of postman [environment variables, test scripts, assertions, interface documents, etc.]
By v$rman_ backup_ job_ Oracle "bug" caused by details
使用rtknavi进行RT-PPP测试
Excel导入,导出功能实现
基于rtklib源码进行片上移植的思路分享
【rtklib】在rtk下使用抗差自适应卡尔曼滤波初步实践
Database course design: college educational administration management system (including code)
FairyGUI人物状态弹窗
There is no red exclamation mark after SVN update
[Leetcode15]三数之和
Gateway fails to route according to the service name, and reports an error service unavailable, status=503
Programming homework: educational administration management system (C language)
数据库课程设计:高校教务管理系统(含代码)
(5) Introduction to R language bioinformatics -- ORF and sequence analysis
[Chongqing Guangdong education] Shandong University College Physics reference materials
GPS高程拟合抗差中误差的求取代码实现
MySQL時間、時區、自動填充0的問題
How to add music playback function to Arduino project