首页 > 其他 > 详细

50. Pow(x, n)

时间:2017-05-27 10:02:52      阅读:228      评论:0      收藏:0      [点我收藏+]

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)

原文:http://www.cnblogs.com/codeskiller/p/6911164.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!