c_cpp 50. Pow(x,n)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 50. Pow(x,n)相关的知识,希望对你有一定的参考价值。

class Solution {
public:
    double myPow(double x, int n) {
    	double ans = 1;
    	unsigned long long p;
    	if (n < 0) {
    		p = -n;
    		x = 1 / x;
    	} 
        else
    		p = n;
        
		while (p) {
			if (p & 1)
				ans *= x;
			x *= x;
			p >>= 1;
		}
		return ans;
    }
};

以上是关于c_cpp 50. Pow(x,n)的主要内容,如果未能解决你的问题,请参考以下文章

50. Pow(x, n)

LeetCode50. Pow(x, n)

50. Pow(x, n)

50. Pow(x, n)

leetcode || 50Pow(x, n)

LeetCode 50. Pow(x, n)