摘要: Implementint sqrt(int x).Compute and return the square root ofx.解题思路1,o(log(n)):像这种从初始遍历查找匹配的任务,往往可以使用二分法逐渐缩小范围;初始从0~x/2 + 1,然后逐渐以二分思想缩小查找范围。解题思路2:牛顿迭... 阅读全文
posted @ 2015-03-18 02:50 胡潇 阅读(130) 评论(0) 推荐(0) 编辑