摘要: 题目描述: Implement int sqrt(int x).Compute and return the square root of x.如果输入的是正整数,并且,输出int类型的话,可以用二分查找的方法。 对于一个非负数n,它的平方根不会大于(n/2+1)。因... 阅读全文
posted @ 2016-08-30 19:40 zsper 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 题目描述: Given a linked list, swap every two adjacent nodes and return its head.For example, Given 1->2->3->4, you should return the list... 阅读全文
posted @ 2016-08-30 16:33 zsper 阅读(90) 评论(0) 推荐(0) 编辑