50. Pow(x, n)

Posted CodesKiller

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了50. Pow(x, n)相关的知识,希望对你有一定的参考价值。

Implement pow(xn).

 1 public class Solution {
 2     public double myPow(double x, int n) {
 3         if(n==0) return 1;
 4         if(n<0){
 5             if(n==Integer.MIN_VALUE){
 6                 x = 1/x;
 7                 n = n+1;
 8                 n = -n;
 9                 return x*x*myPow(x*x,n/2);
10             }
11             x = 1/x;
12             n = -n;
13         }
14         return n%2==0?myPow(x*x,n/2):x*myPow(x*x,n/2);
15     }
16 }

 

以上是关于50. Pow(x, n)的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode50. Pow(x, n)(快速幂)

LeetCode50. Pow(x, n)(快速幂)

[LeetCode] 50. Pow(x, n) Java

LeetCode50 Pow(x, n)

50. Pow(x, n) 实现Pow(x,n)

50. Pow(x, n)