C++实现LeetCode(50.求x的n次方)
[LeetCode] 50. Pow(x, n) 求x的n次方
Implement pow(x, n), which calculates x raised to the power n(xn).
Example 1:
Input: 2.00000, 10Example 2:
Output: 1024.00000
Input: 2.10000, 3Example 3:
Output: 9.26100
Input: 2.00000, -2Note:
Output: 0.25000
Explanation: 2-2 = 1/22 = 1/4 = 0.25
- -100.0 < x < 100.0
- n is a 32-bit signed integer, within the range [?231, 231 ? 1]
解法一:
class Solution {public:double myPow(double x, int n) {if (n == 0) return 1; double half = myPow(x, n / 2); if (n % 2 == 0) return half * half; if (n > 0) return half * half * x; return half * half / x; }};
这道题还有迭代的解法,让i初始化为n,然后看i是否是2的倍数,不是的话就让 res 乘以x。然后x乘以自己,i每次循环缩小一半,直到为0停止循环。最后看n的正负,如果为负,返回其倒数,参见代码如下:
解法二:
class Solution {public:double myPow(double x, int n) {double res = 1.0; for (int i = n; i != 0; i /= 2) {if (i % 2 != 0) res *= x; x *= x; }return n < 0 ? 1 / res : res; }};
【C++实现LeetCode(50.求x的n次方)】到此这篇关于C++实现LeetCode(50.求x的n次方)的文章就介绍到这了,更多相关C++实现求x的n次方内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
推荐阅读
- 关于QueryWrapper|关于QueryWrapper,实现MybatisPlus多表关联查询方式
- MybatisPlus使用queryWrapper如何实现复杂查询
- python学习之|python学习之 实现QQ自动发送消息
- 孩子不是实现父母欲望的工具——林哈夫
- opencv|opencv C++模板匹配的简单实现
- Node.js中readline模块实现终端输入
- 【Leetcode/Python】001-Two|【Leetcode/Python】001-Two Sum
- java中如何实现重建二叉树
- leetcode|leetcode 92. 反转链表 II
- 人脸识别|【人脸识别系列】| 实现自动化妆