[LeetCode] 231. 2 的幂
Posted ACBingo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[LeetCode] 231. 2 的幂相关的知识,希望对你有一定的参考价值。
位运算
``` class Solution { public boolean isPowerOfTwo(int n) { int cnt = 0; while (n>0) {
if ((n & 1) == 1) cnt++;
n >>= 1;
}
return cnt == 1;
}
}
以上是关于[LeetCode] 231. 2 的幂的主要内容,如果未能解决你的问题,请参考以下文章