题目描述
Implement pow(x, n), which calculates x raised to the power n (xn).
Example 1:
Input: 2.00000, 10
Output: 1024.00000
Example 2:
Input: 2.10000, 3
Output: 9.26100
Example 3:
Input: 2.00000, -2
Output: 0.25000
Explanation: 2-2 = 1/22 = 1/4 = 0.25
Note:
-100.0 < x < 100.0
n is a 32-bit signed integer, within the range [−2^31, 2^31 − 1]
我的解法
解题思路
计算一个数的幂,最先想到的方法就是用循环的方法,但是要考虑好当n=0或者n小于0的情况。
实现代码
1 | class Solution { |
当输入为:
0.00001
2147483647
会超出时间限制
高票解法
于是去看了看官方解法
快速幂算法-递归
1 | class Solution { |
思路就是,当我们知道了x^n时,我们就可以快速的求出x^2n,而不需要在将x乘n次