博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LintCode] Pow(x, n) 求x的n次方
阅读量:4962 次
发布时间:2019-06-12

本文共 1044 字,大约阅读时间需要 3 分钟。

 

Implement pow(x, n).

 Notice

You don't need to care about the precision of your answer, it's acceptable if the expected answer and your answer 's difference is smaller than 1e-3.

Example
Pow(2.1, 3) = 9.261Pow(0, 1) = 0Pow(1, 0) = 1

 

LeetCode上的原题,请参见我之前的博客。

 

解法一:

class Solution {public:    /**     * @param x the base number     * @param n the power number     * @return the result     */    double myPow(double x, int n) {        if (n == 0) return 1;        double half = myPow(x, n / 2);        if (n % 2 == 0) return half * half;        else if (n > 0) return half * half * x;        else return half * half / x;    }};

 

解法二:

class Solution {public:    /**     * @param x the base number     * @param n the power number     * @return the result     */    double myPow(double x, int n) {        if (n == 0) return 0;        if (n == 1) return x;        if (n == -1) return 1 / x;        return myPow(x, n / 2) * myPow(x, n - n / 2);    }};

 

转载于:https://www.cnblogs.com/grandyang/p/5679800.html

你可能感兴趣的文章
Linux环境下SolrCloud集群环境搭建关键步骤
查看>>
P3565 [POI2014]HOT-Hotels
查看>>
MongoDB的简单使用
查看>>
hdfs 命令使用
查看>>
prometheus配置
查看>>
【noip2004】虫食算——剪枝DFS
查看>>
java语法之final
查看>>
python 多进程和多线程的区别
查看>>
sigar
查看>>
iOS7自定义statusbar和navigationbar的若干问题
查看>>
[Locked] Wiggle Sort
查看>>
deque
查看>>
Setting up a Passive FTP Server in Windows Azure VM(ReplyCode: 227, Entering Passive Mode )
查看>>
Python模块调用
查看>>
委托的调用
查看>>
c#中从string数组转换到int数组
查看>>
数据模型(LP32 ILP32 LP64 LLP64 ILP64 )
查看>>
java小技巧
查看>>
POJ 3204 Ikki's Story I - Road Reconstruction
查看>>
【BZOJ】2959: 长跑(lct+缩点)(暂时弃坑)
查看>>