Rotate List
摘要:
Given a list, rotate the list to the right bykplaces, wherekis non-negative.For example:Given1->2->3->4->5->NULLandk=2,return4->5->1->2->3->NULL.最开始想直接用双指针做就行了。 但是发现n竟然可以比length长。 1 /** 2 * Definition for singly-linked list. 3 * public class ListNode { 4 * int val; 5 * 阅读全文
posted @ 2013-10-03 15:14 Step-BY-Step 阅读(229) 评论(0) 推荐(0) 编辑