首页 > 其他 > 详细

leetcode之sqrt

时间:2015-04-11 22:21:24      阅读:163      评论:0      收藏:0      [点我收藏+]

Implement int sqrt(int x).

Compute and return the square root of x.

这道题也属于二分查找的变形

主流的方法是用牛顿插值,牛顿法的思想参考http://blog.csdn.net/StarCXDJ/article/details/18051207

将代码附在下面:

public int sqrt(int x) {
        if (x == 1)
			return 1;
		double res = x / 2;
		while (Math.abs(res * res - x) > 0.00001) {
			res = (res + x / res) / 2;
		}
		return (int) res;
    }

 最近几天开始懒惰了,不行不行!!!!坚持坚持

 

leetcode之sqrt

原文:http://www.cnblogs.com/gracyandjohn/p/4418453.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!