39. leetcode 326. Power of Three
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了39. leetcode 326. Power of Three相关的知识,希望对你有一定的参考价值。
326. Power of Three
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?
思路:看这个数取以3为底的对数结果是否为整数,C++中只有自然对数函数log()和以10为底的对数函数log10(),所以要借助换底公式。此处用自然对数会有精度问题,用以10为底的对数则没有这个问题。
以上是关于39. leetcode 326. Power of Three的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode----326. Power of Three(Java)