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

Pow(x, n)

时间:2016-02-07 21:18:42      阅读:276      评论:0      收藏:0      [点我收藏+]

标签:

Implement pow(xn).

 

 

 
class Solution {
public:
    double myPow(double x, int n) {
        // Start typing your C/C++ solution below
        // DO NOT write int main() function
        if(n<0)
        {
            if(n==INT_MIN)
                return 1.0 / (myPow(x,INT_MAX)*x);
            else
                return 1.0 / myPow(x,-n);
        }
        if(n==0)
            return 1.0;
        double ans = 1.0 ;
        for(;n>0; x *= x, n>>=1)
        {
            if(n&1>0)
                ans *= x;
        }
        return ans;
    }
};

 

Pow(x, n)

标签:

原文地址:http://www.cnblogs.com/SpeakSoftlyLove/p/5184775.html

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