231. Power of Two

来源:互联网 发布:手机视频播放器 知乎 编辑:程序博客网 时间:2024/06/05 22:43

Given an integer, write a function to determine if it is a power of two.

Credits:
Special thanks to @jianchao.li.fighter for adding this problem and creating all test cases.

Subscribe to see which companies asked this question

注意 处理负数的情况。

class Solution {public:    bool isPowerOfTwo(int n) {        // if(n<=0) return 0;        return (n>0) && (n&(n-1))==0;    }};


0 0
原创粉丝点击