leetcode刷题笔记326 3的幂

Posted qflyue

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode刷题笔记326 3的幂相关的知识,希望对你有一定的参考价值。

题目描述:

给出一个整数,写一个函数来确定这个数是不是3的一个幂。

后续挑战:
你能不使用循环或者递归完成本题吗?

 

题目分析:

既然不使用循环或者递归,那我可要抖机灵了

如果某个数n为3的幂 ,则k=log3N

代码思路:

首先求出int范围最大的3的幂   Max3

如果n为3的幂,则Max3必定能整除n

so,直接上代码

 

解答代码:

C++版:

技术分享图片
class Solution {
public:
    bool isPowerOfThree(int n) {
        if(n<=0)return false;
        const int maxint=0x7fffffff;
        int k=log(maxint)/log(3);
        int b3=pow(3,k);
        return (b3%n==0);
    }
};
Code

Python版:

技术分享图片
class Solution:
    def isPowerOfThree(self, n):
        """
        :type n: int
        :rtype: bool
        """
        if n <= 0:
            return False
        maxint = 0x7fffffff

        k=math.log(maxint)//math.log(3)
        b3=3**k
        return (b3%n)==0
Code

 

以上是关于leetcode刷题笔记326 3的幂的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode刷题326-简单-3的幂

Leetcode刷题100天—326. 3的幂(数学)—day47

Leetcode刷题100天—326. 3的幂(数学)—day47

Leetcode 326.3的幂 By Python

LeetCode 326 3的幂[数学 循环] HERODING的LeetCode之路

p78 3的幂 (leetcode 326)