leetcode_Power of Two_easy
Posted slgkaifa
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode_Power of Two_easy相关的知识,希望对你有一定的参考价值。
Given an integer, write a function to determine if it is a power of two.
题目意思:推断某个数是否是2的幂。
方法:直接进行bit运算,推断是否这个数二进制位里有且仅有一个1。
class Solution { public: bool isPowerOfTwo(int n) { int c=0; while(n!=0) { c+=1&n; if(c>1) return false; n>>=1; } if(c==1) return true; else return false; } };
以上是关于leetcode_Power of Two_easy的主要内容,如果未能解决你的问题,请参考以下文章
在 Dart 中,List.from 和 .of 以及 Map.from 和 .of 有啥区别?
JavaScript `of` 关键字(for...of 循环)
nth-child,nth-last-child,only-child,nth-of-type,nth-last-of-type,only-of-type,first-of-type,last-of-