求一个数的平方根

题目原型:

Implement int sqrt(int x).

Compute and return the square root of x.

思想:

采用二分法逐渐逼近。

这里面是采用结果取最大整数法,如   sqrt(3)=1.717,但这个函数是返回1。然后是当x在(0,1]范围内时,返回1;当x为0时,返回0。

public class Sqrt
{
	public int getResult(int x , double low , double high , double target)
	{
		if(x==0)
			return 0;
		if(x<=1&&x>0)
			return 1;
		if(low==high)
			return (int)low;
		double mid = (low+high)/2;
		if(Math.abs(mid*mid-x)<=target)
			return (int)mid;
		else if((mid*mid-x)>target)
		{
			high = mid;
			return getResult(x, low, high, target);
		}
		else
		{
			low = mid;
			return getResult(x, low, high, target);
		}
	}
	public int sqrt(int x) 
	{
		int result = 0;
		double target = 0.00001;
		result = getResult(x, 0, x, target);
		return result;
    }
	public static void main(String[] args)
	{
		Sqrt s = new Sqrt();
		int x = 0;
		System.out.println(s.sqrt(x));
	}
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值