码迷,mamicode.com
首页 > 其他好文 > 详细

letecode [231] - Power of Two

时间:2019-06-14 12:38:33      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:pow   strong   cti   nbsp   bsp   表示   NPU   执行   write   

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

Example 1:

Input: 1
Output: true 
Explanation: 20 = 1

Example 2:

Input: 16
Output: true
Explanation: 24 = 16

Example 3:

Input: 218
Output: false

题目大意

   判断一个整数是否为2的幂次方。

理  解:

   2的幂 的二进制表示中只有一位是1,其余位全是0。找到第一个1判断剩下的数是否位0.

代 码 C++:

class Solution {
public:
    bool isPowerOfTwo(int n) {
        while(n){
            if(n&1==1){
                n = n>>1;
                if(n==0)
                    return true;
                else
                    return false;
            }
            n = n>>1;
        }
        return false;
    }
};

运行结果:

  执行用时 :4 ms, 在所有C++提交中击败了92.62%的用户

  内存消耗 :8.2 MB, 在所有C++提交中击败了5.71%的用户

letecode [231] - Power of Two

标签:pow   strong   cti   nbsp   bsp   表示   NPU   执行   write   

原文地址:https://www.cnblogs.com/lpomeloz/p/11022445.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!