leetcode_231 Power Of Two(Bit Manipulation)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode_231 Power Of Two(Bit Manipulation)相关的知识,希望对你有一定的参考价值。
Given an integer, write a function to determine if it is a power of two.
public class Solution { public boolean isPowerOfTwo(int n) { return ((n&(n-1))==0&&n>0); } }
强大的位运算!!!
以上是关于leetcode_231 Power Of Two(Bit Manipulation)的主要内容,如果未能解决你的问题,请参考以下文章
leetcode_231 Power Of Two(Bit Manipulation)
LeetCode191 Number of 1 Bits. LeetCode231 Power of Two. LeetCode342 Power of Four