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 中等题的主要内容,如果未能解决你的问题,请参考以下文章

leetcode 中等题

刷完leetcode的二叉树中等题,请允许我小小的嘚瑟一把

⭐算法入门⭐《堆》中等01 —— LeetCode 面试题 17.09. 第 k 个数

LeetCode精选TOP面试题(中等2)

力扣(LeetCode)刷题,简单+中等题(第34期)

力扣(LeetCode)刷题,简单+中等题(第34期)