码迷,mamicode.com
首页 > Web开发 > 详细

50. Pow(x, n)(js)

时间:2019-02-24 22:56:48      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:color   exp   power   sed   www   tar   Plan   amp   .com   

50. Pow(x, n)

Implement pow(xn), which calculates x raised to the power n (xn).

Example 1:

Input: 2.00000, 10
Output: 1024.00000

Example 2:

Input: 2.10000, 3
Output: 9.26100

Example 3:

Input: 2.00000, -2
Output: 0.25000
Explanation: 2-2 = 1/22 = 1/4 = 0.25
题意:实现指数函数
代码如下:
/**
 * @param {number} x
 * @param {number} n
 * @return {number}
 */
var myPow = function(x, n) {
    if(n==0){
        return 1;
    }
    if(n<0){
        n=-n;
        x=1/x;
    }
    return (n%2===0)?myPow(x*x,n/2):x*myPow(x*x,parseInt(n/2));
};

 

50. Pow(x, n)(js)

标签:color   exp   power   sed   www   tar   Plan   amp   .com   

原文地址:https://www.cnblogs.com/xingguozhiming/p/10428476.html

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