[LeetCode] 69. x 的平方根
Posted 怕什么
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[LeetCode] 69. x 的平方根相关的知识,希望对你有一定的参考价值。
我都不好意思写 我没想出来二分法。。。。
方法一:二分法
public class Solution { public int mySqrt(int x) { long left = 0; long right = Integer.MAX_VALUE; while (left < right) { // 这种取中位数的方法又快又好,是我刚学会的,原因在下面这篇文章的评论区 // https://www.liwei.party/2019/06/17/leetcode-solution-new/search-insert-position/ // 注意:这里得用无符号右移 long mid = (left + right + 1) >>> 1; long square = mid * mid; if (square > x) { right = mid - 1; } else { left = mid; } } return (int) left; } }
以上是关于[LeetCode] 69. x 的平方根的主要内容,如果未能解决你的问题,请参考以下文章