[0600] 不含连续1的非负整数
- GitHub
- http://leetcode.xuezhisd.top/post/bcb125b9.html
- https://leetcode.com/problems/non-negative-integers-without-consecutive-ones
- https://leetcode-cn.com/problems/non-negative-integers-without-consecutive-ones
题目描述
给定一个正整数 n,找出小于或等于 n 的非负整数中,其二进制表示不包含 连续的1 的个数。
示例 1:
输入: 5 输出: 5 解释: 下面是带有相应二进制表示的非负整数<= 5: 0 : 0 1 : 1 2 : 10 3 : 11 4 : 100 5 : 101 其中,只有整数3违反规则(有两个连续的1),其他5个满足规则。
说明: 1 <= n <= 109
Related Topics
题目解析
- [请一句话描述题目…]
不确定性
方法一:[算法名称]
分析
思路
注意
知识点
复杂度
代码
1 | // |
方法二:[算法名称]
分析
思路
注意
知识点
复杂度
代码
1 | // |