leetcode 326. Power of Three

本文介绍多种方法来判断一个整数是否为3的幂次方,包括使用递归、循环、最大3的幂次方判断及利用对数特性等算法实现,并对比了不同方法的优缺点。

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

Follow up:
Could you do it without using any loop / recursion?

class Solution(object):
    def isPowerOfThree(self, n):
        """
        :type n: int
        :rtype: bool
        """
        """
        0 == false
        1 == true
        2 == false
        3 == true
        9 == true
        """
        if n <= 0:
            return False
        if n == 1:
            return True
        else:
            return self.isPowerOfThree(n/3) if n % 3 ==0 else False
            

 

class Solution(object):
    def isPowerOfThree(self, n):
        """
        :type n: int
        :rtype: bool
        """
        """
        0 == false
        1 == true
        2 == false
        3 == true
        9 == true
        """
        if n <= 0:
            return False        
        while n:
            if n == 1:
                return True
            if n % 3 != 0:
                return False
            n /= 3
        return False                    

 

class Solution(object):
    def isPowerOfThree(self, n):
        """
        :type n: int
        :rtype: bool
        """
        """
        0 == false
        1 == true
        2 == false
        3 == true
        9 == true
        """
        if n <= 0:
            return False        
        while (n%3==0):
            n /= 3
        return n==1
        
            

 

class Solution(object):
    def isPowerOfThree(self, n):
        """
        :type n: int
        :rtype: bool
        """
        """
        0 == false
        1 == true
        2 == false
        3 == true
        9 == true
        """
        return n in {1, 3, 9, 27, 81, 243, 729, 2187, 6561, 19683, 59049, 177147, 531441, 1594323, 4782969, 14348907,
               43046721, 129140163, 387420489, 1162261467}                       

 

class Solution(object):
    def isPowerOfThree(self, n):
        """
        :type n: int
        :rtype: bool
        """
        """
        0 == false
        1 == true
        2 == false
        3 == true
        9 == true
        """
        Max3PowerInt = 1162261467 # 3^19, 3^20 = 3486784401 > MaxInt32
        MaxInt32 = 2147483647 # // 2^31 - 1    
        if (n <= 0 or n > Max3PowerInt): return False
        return Max3PowerInt % n == 0                   

 

class Solution(object):
    def isPowerOfThree(self, n):
        """
        :type n: int
        :rtype: bool
        """
        """
        0 == false
        1 == true
        2 == false
        3 == true
        9 == true
        """
        if n <= 0: return False
        k = math.log(n, 3)
        return abs(k - round(k)) < 1e-10               

 

 

class Solution(object):
    def isPowerOfThree(self, n):
        """
        :type n: int
        :rtype: bool
        """
        """
        0 == false
        1 == true
        2 == false
        3 == true
        9 == true
        """
        Max3PowerInt = 1162261467 # 3^19, 3^20 = 3486784401 > MaxInt32
        MaxInt32 = 2147483647 # // 2^31 - 1    
        if (n <= 0 or n > Max3PowerInt): return False
        return Max3PowerInt % n == 0                   

 其他:

Method 1

Find the maximum integer that is a power of 3 and check if it is a multiple of the given input. (related post)

public boolean isPowerOfThree(int n) { int maxPowerOfThree = (int)Math.pow(3, (int)(Math.log(0x7fffffff) / Math.log(3))); return n>0 && maxPowerOfThree%n==0; } 

Or simply hard code it since we know maxPowerOfThree = 1162261467:

public boolean isPowerOfThree(int n) { return n > 0 && (1162261467 % n == 0); } 

It is worthwhile to mention that Method 1 works only when the base is prime. For example, we cannot use this algorithm to check if a number is a power of 4 or 6 or any other composite number.

Method 2

If log10(n) / log10(3) returns an int (more precisely, a double but has 0 after decimal point), then n is a power of 3. (original post). But be careful here, you cannot use log (natural log) here, because it will generate round off error for n=243. This is more like a coincidence. I mean when n=243, we have the following results:

log(243) = 5.493061443340548    log(3) = 1.0986122886681098
   ==> log(243)/log(3) = 4.999999999999999 log10(243) = 2.385606273598312 log10(3) = 0.47712125471966244 ==> log10(243)/log10(3) = 5.0 

This happens because log(3) is actually slightly larger than its true value due to round off, which makes the ratio smaller.

public boolean isPowerOfThree(int n) { return (Math.log10(n) / Math.log10(3)) % 1 == 0; } 

Method 3 related post

public boolean isPowerOfThree(int n) {
    return n==0 ? false : n==Math.pow(3, Math.round(Math.log(n) / Math.log(3))); } 

Method 4 related post

public boolean isPowerOfThree(int n) { return n>0 && Math.abs(Math.log10(n)/Math.log10(3)-Math.ceil(Math.log10(n)/Math.log10(3))) < Double.MIN_VALUE; } 

Cheating Method

This is not really a good idea in general. But for such kind of power questions, if we need to check many times, it might be a good idea to store the desired powers into an array first. (related post)

public boolean isPowerOfThree(int n) {
    int[] allPowerOfThree = new int[]{1, 3, 9, 27, 81, 243, 729, 2187, 6561, 19683, 59049, 177147, 531441, 1594323, 4782969, 14348907, 43046721, 129140163, 387420489, 1162261467}; return Arrays.binarySearch(allPowerOfThree, n) >= 0;
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值