码迷,mamicode.com
首页 > 编程语言 > 详细

Leetcode 69. Sqrt(x) 求整数根 in Java

时间:2016-09-08 23:19:39      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:

69. Sqrt(x)

 
  • Total Accepted: 109623
  • Total Submissions: 418262
  • Difficulty: Medium

Implement int sqrt(int x).

Compute and return the square root of x.

public class Solution {
    public int mySqrt(int x) {
        if(x==1) return 1;
        
        //注意此题返回值int,和sqrt返回值double不同
        double low=0;
        double high=x;
        
        while(low<high){
            double mid=(low+high)/2;
            
            if(Math.abs(mid*mid-x)<0.01){
             return (int)mid;
            }else if(mid*mid<x){
                low=mid;
            }else{
                high=mid;
            }
            
        }
        return (int)low;
    }
}

 

Leetcode 69. Sqrt(x) 求整数根 in Java

标签:

原文地址:http://www.cnblogs.com/yanyuqi/p/5854755.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!