摘要: Given a list, rotate the list to the right by k places, where k is non-negative. For example: Given 1->2->3->4->5->NULL and k = 2, return 4->5->1->2->3->NULL. 解题思路: 双指针(tail,pre)找到链表... 阅读全文
posted @ 2015-03-11 19:08 aorora 阅读(126) 评论(0) 推荐(0) 编辑
摘要: Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x.You should preserve the o... 阅读全文
posted @ 2015-03-11 14:14 aorora 阅读(140) 评论(0) 推荐(0) 编辑
摘要: Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list.For example, Given 1->2... 阅读全文
posted @ 2015-03-11 12:47 aorora 阅读(123) 评论(0) 推荐(0) 编辑