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

50. Pow(x, n)

时间:2017-05-27 10:42:56      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:color   val   ble   return   int   log   n+1   imp   bsp   

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)

标签:color   val   ble   return   int   log   n+1   imp   bsp   

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

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