标签:line tps pen tco 使用 com span table href
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 | class { |
1 | class { |
LeetCode - 326. Power of Three
标签:line tps pen tco 使用 com span table href
原文地址:https://www.cnblogs.com/dajunjun/p/11711047.html