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

【一天一道LeetCode】#50. Pow(x, n)

时间:2016-05-18 19:08:40      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

一天一道LeetCode系列

(一)题目

Implement pow(x, n).

(二)解题

题目很简单,实现x的n次方。

/*
需要注意一下几点:
1.n==0时,返回值为1
2.x==1时,返回值为1;x==-1时,根据n的奇偶来判断
3.n==-2147483648,特殊情况,int的范围时-2147483648~2147483647,
*/
class Solution {

public:

    double myPow(double x, int n) {

        if(n==0||x==1) return 1;



        if(x==-1&&n%2==0) return 1;

        if(x==-1&&n%2==1) return -1;



        if(n==-2147483648) return 1.0/(x*myPow(x,2147483647));

        if(n<0) return 1.0/myPow(x,0-n);

        if(n%2==0) return myPow(x*x,n/2);

        else return myPow(x*x,n/2)*x;

    }

};


【一天一道LeetCode】#50. Pow(x, n)

标签:

原文地址:http://blog.csdn.net/terence1212/article/details/51416698

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