其他分享
首页 > 其他分享> > LeetCode - 326. Power of Three

LeetCode - 326. Power of Three

作者:互联网

题目

LeetCode - 326. Power of Three

题目链接

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

参考博客
解题思路

解法二一开始打算使用$3^{log_3N}== N$,来判断是否是3的幂,利用的是取整后去尾,再还原。但是pow运算,和log运算时浮点运算,会有精度丢失。C语言中log是以e为底的对数,计算时精度丢失严重,建议用以10为底的对数log10.

解题源码
  1. 解法一
1
2
3
4
5
6
7
8
9
10
class  {
public:
bool isPowerOfThree(int

标签:log,Power,Three,326,为底,LeetCode
来源: https://www.cnblogs.com/dajunjun/p/11711047.html