码迷,mamicode.com
首页 > 其他好文 > 详细

69. Sqrt(x)

时间:2017-10-20 21:51:53      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:style   col   mys   and   put   ret   square   题目   span   

Implement int sqrt(int x).

Compute and return the square root of x.

题目题目:返回一个int数开方后的结果

 1     public int mySqrt(int x) {
 2         if (x == 0)
 3             return 0;
 4         int left = 1, right = x;
 5         int ans = 1;
 6         while (left<=right)
 7         {
 8             int mid = left+ (right-left)/2;
 9             if (mid == x/mid)
10             {
11 
12                 return mid;
13             }
14             else if (mid>x/mid) right=mid-1;
15             else left=mid+1;
16         }
17         return right;     
18     }

 

69. Sqrt(x)

标签:style   col   mys   and   put   ret   square   题目   span   

原文地址:http://www.cnblogs.com/wzj4858/p/7701206.html

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