码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode 50. Pow(x, n)

时间:2018-09-06 03:04:15      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:turn   bsp   lse   优化   ret   col   leetcode   solution   暴力   

暴力会超时,利用二分优化。

class Solution {
public:
    double myPow(double x, int n) {
        if (n<0){
            x = 1/x;
            n = -n;
        }
        return pow(x,n);
    }
    
    double pow(double x, int n){
        if (n==0) return 1.0;
        double half=pow(x,n/2);
        if (n%2==0) return half*half;
        else return half*half*x;
    }
};

 

LeetCode 50. Pow(x, n)

标签:turn   bsp   lse   优化   ret   col   leetcode   solution   暴力   

原文地址:https://www.cnblogs.com/hankunyan/p/9595502.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!