[Lintcode]142. O Check Power of 2
Posted siriusli
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Lintcode]142. O Check Power of 2相关的知识,希望对你有一定的参考价值。
142. O(1) Check Power of 2
- 本题难度: Easy
Topic: Math&Bit Manipulation
Description
Using O(1) time to check whether an integer n is a power of 2.
Example
Example 1:
Input: 4
Output: true
Example 2:
Input: 5
Output: false
Challenge
O(1) time
别人的代码 参考野球拳刷刷刷LeetCode LintCode 解题报告
class Solution {
/*
* @param n: An integer
* @return: True or false
*/
public boolean checkPowerOf2(int n) {
// write your code here
return n > 0 && (n & (n - 1)) == 0;
}
}
思路
没想到合适的方法。不太会做这类的题
以上是关于[Lintcode]142. O Check Power of 2的主要内容,如果未能解决你的问题,请参考以下文章
lintcode-easy-O Check Power of 2
lintcode: Check Sum of Square Numbers