leetcode 中等题
Posted dreamcatcher-zp
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 中等题相关的知识,希望对你有一定的参考价值。
50. Pow(x, n) (中等)
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; }
以上是关于leetcode 中等题的主要内容,如果未能解决你的问题,请参考以下文章