本文主要是介绍Leetcode19: Pow(x,n),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Implement pow(x, n).
class Solution {
public:double myPow(double x, int n) {if(n == 0)return 1.0;if(n < 0)return 1.0/myPow(x, -n);double half = myPow(x, n>>1);if(n%2 == 0)return half*half;elsereturn half*half*x;}
};
这篇关于Leetcode19: Pow(x,n)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!