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

342 Power of Four 4的幂

时间:2018-04-15 11:52:58      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:http   递归   problem   返回   logs   return   bsp   解决   rand   

给定一个整数 (32位有符整数型),请写出一个函数来检验它是否是4的幂。
示例:
当 num = 16 时 ,返回 true 。 当 num = 5时,返回 false。
问题进阶:你能不使用循环/递归来解决这个问题吗?

详见:https://leetcode.com/problems/power-of-four/description/

C++:

方法一:

class Solution {
public:
    bool isPowerOfFour(int num) {
        while(num&&(num%4==0))
        {
            num/=4;
        }
        return num==1;
    }
};

 方法二:

class Solution {
public:
    bool isPowerOfFour(int num) {
        return num>0&&!(num&num-1)&&(num-1)%3==0;
    }
};

 参考:https://www.cnblogs.com/grandyang/p/5403783.html

342 Power of Four 4的幂

标签:http   递归   problem   返回   logs   return   bsp   解决   rand   

原文地址:https://www.cnblogs.com/xidian2014/p/8836254.html

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