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

Posted BrookLearnData

tags:

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

题目:

Implement pow(xn).

Example 1:

Input: 2.00000, 10
Output: 1024.00000

Example 2:

Input: 2.10000, 3
Output: 9.26100

题意及分析:实现求x的n次方,使用分治法,复杂度降低到log2n

代码:

public class Solution {
    public double myPow(double x, int n) {
        if(n < 0)
            return 1/pow(x,-n);
        else
            return pow(x,n);
    }

    private double pow(double x, int n) {        //计算x的n次方
        if(n==0) return 1.0;
        double tmp=pow(x,n/2);
        if(n%2==0)
            return tmp*tmp;
        else
            return tmp*tmp*x;
    }
}

 

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

leetcode || 50Pow(x, n)

LeetCode 50. Pow(x, n)

LeetCode 50. Pow(x, n)

LeetCode 50. Pow(x, n)

LeetCode 50. Pow(x, n)

Leetcode 50. Pow(x, n)