算法
(数学) $O(log(n))$
将n
转换成2
进制,就可以将x
的n
次方,转换成若干个x
的2
的幂的乘积,对于这些幂,可以用前一个的平方求得
Python 代码
class Solution:
def myPow(self, x: float, n: int) -> float:
if n < 0:
x = 1 / x
n = -n
res = 1
while n > 0:
if n % 2:
res *= x
n //= 2
x *= x
return res