326. Power of Three*

326. Power of Three*

https://leetcode.com/problems/power-of-three/

Title Description

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

Example 1:

Input: 27
Output: true

Example 2:

Input: 0
Output: false

Example 3:

Input: 9
Output: true

Example 4:

Input: 45
Output: false

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

C ++ implementation 1

Recursive do.

class Solution {
public:
    bool isPowerOfThree(int n) {
        if (n == 1) return true;
        if (n % 3 != 0 || n == 0) return false;
        n /= 3;
        return isPowerOfThree(n);
    }
};

2 in C ++

Using a loop to do. From LeetCode Submission.

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

C ++ implementation 3

mathematical method.

class Solution {
public:
    bool isPowerOfThree(int n) {
 		return fmod(log10(n)/log10(3), 1)==0;        
    }
};
Published 455 original articles · won praise 8 · views 20000 +

Guess you like

Origin blog.csdn.net/Eric_1993/article/details/104873207