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

LeetCode:Sqrt(x)

时间:2015-01-07 20:57:12      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:algorithm   leetcode   二分查找   

题目描述:

Implement int sqrt(int x).

Compute and return the square root of x.


思路分析:采用二分查找的思想。当未找到mid=x/mid时,若mid>x/mid,则表示mid-1为平方值最接近但不超过x的值,即结果为mid-1。若mid<x/mid,则表示结果为mid为平方值最接近但不超过x的值,即结果为mid。


代码:

     if(x == 0 || x == 1)
           return x;
        int start = 0;
     	int end = x;
    	int result;
	
    	while(start <= end)
    	{
	    	int mid = (start+end)/2;
	    	if(mid == x/mid)
	    		return mid;
	    	else if(mid > x/mid)
	    	{
	    	    end = mid - 1;
	    	    result = mid - 1;
	    	}
	    	else
	    	{
	    	    start = mid + 1;
	    	    result = mid;
	    	}
    	}
	    return result;
     }


LeetCode:Sqrt(x)

标签:algorithm   leetcode   二分查找   

原文地址:http://blog.csdn.net/yao_wust/article/details/42497921

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