摘要: 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 as 2->1->4->3. Your a 阅读全文
posted @ 2016-03-17 16:07 zxqstrong 阅读(209) 评论(0) 推荐(0) 编辑
摘要: Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists. 合并两个有序链表 阅读全文
posted @ 2016-03-17 15:21 zxqstrong 阅读(152) 评论(0) 推荐(0) 编辑