Leetcode——x 的平方根(二分)

Posted Yawn,

tags:

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

1. 题目

2. 题解

class Solution {
    public int mySqrt(int x) {
        if(x == 1)
            return 1;
        int min = 0;
        int max = x;
        while(max-min>1)
        {
            int m = (max+min)/2;
            if(x / m < m)       //如果 x/m < m :说明m比x的平方根大了
                max = m;    
            else                //如果 x/m > m :说明m比x的平方根小了
                min = m;
        }
        return min;
    }
}

以上是关于Leetcode——x 的平方根(二分)的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode-数学/二分查找x 的平方根

LeetCode-数学/二分查找x 的平方根

leetcode 69.x的平方根(Java 二分查找 easy)

leetcode Sqrt(x)二分法查找平方根

LeetCode 69 x的平方根[二分法] HERODING的LeetCode之路

leetcode - 二分查找