摘要:
题目描述: Implement int sqrt(int x).Compute and return the square root of x.如果输入的是正整数,并且,输出int类型的话,可以用二分查找的方法。 对于一个非负数n,它的平方根不会大于(n/2+1)。因... 阅读全文
摘要:
题目描述: 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... 阅读全文