首页 > 其他 > 详细

326 Power of Three 3的幂

时间:2018-04-14 16:46:40      阅读:259      评论:0      收藏:0      [点我收藏+]

给出一个整数,写一个函数来确定这个数是不是3的一个幂。
后续挑战:
你能不使用循环或者递归完成本题吗?

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

C++:

方法一:

class Solution {
public:
    bool isPowerOfThree(int n) {
        while(n&&n%3==0)
        {
            n/=3;
        }
        return n==1;
    }
};

 方法二:

class Solution {
public:
    bool isPowerOfThree(int n) {
        return (n>0&&1162261467%n==0);
    }
};

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

326 Power of Three 3的幂

原文:https://www.cnblogs.com/xidian2014/p/8832583.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!