693. Binary Number with Alternating Bits
Posted dysjtu1995
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了693. Binary Number with Alternating Bits相关的知识,希望对你有一定的参考价值。
Problem:
Given a positive integer, check whether it has alternating bits: namely, if two adjacent bits will always have different values.
Example 1:
Input: 5
Output: True
Explanation:
The binary representation of 5 is: 101
Example 2:
Input: 7
Output: False
Explanation:
The binary representation of 7 is: 111.
Example 3:
Input: 11
Output: False
Explanation:
The binary representation of 11 is: 1011.
Example 4:
Input: 10
Output: True
Explanation:
The binary representation of 10 is: 1010.
思路:
Solution (C++):
bool hasAlternatingBits(int n) {
long long m = n >> 1;
return ((m+n) & (m+n+1)) == 0;
}
性能:
Runtime: 0 ms??Memory Usage: 5.8 MB
思路:
Solution (C++):
bool hasAlternatingBits(int n) {
n ^= n >> 2;
return (n & (n-1)) == 0;
}
性能:
Runtime: 0 ms??Memory Usage: 5.9 MB
以上是关于693. Binary Number with Alternating Bits的主要内容,如果未能解决你的问题,请参考以下文章
693. Binary Number with Alternating Bits
693. Binary Number with Alternating Bits - LeetCode
LeetCode 693. Binary Number with Alternating Bits 自我反思
leetcode练习:693. Binary Number with Alternating Bits