Rotate List:翻折链表

Given a linked list, rotate the list to the right by k places, where k is non-negative.

Example 1:

Input: 1->2->3->4->5->NULL, k = 2
Output: 4->5->1->2->3->NULL
Explanation:
rotate 1 steps to the right: 5->1->2->3->4->NULL
rotate 2 steps to the right: 4->5->1->2->3->NULL

Example 2:

Input: 0->1->2->NULL, k = 4
Output: 2->0->1->NULL
Explanation:
rotate 1 steps to the right: 2->0->1->NULL
rotate 2 steps to the right: 1->2->0->NULL
rotate 3 steps to the right: 0->1->2->NULL
rotate 4 steps to the right: 2->0->1->NULL

解释:就是如果 k 比链表长度 len 小,那么就从链表第k个位置切开,接到开始位置;否则k = k % len。

思路:这样的话只需要找到切分位置,切成两部分,即 “前一部分长度 + k == 链表总长”。记录下相应位置,切分后,将后一部分的结尾连接到前一部分的开头,将前一部分的结尾断开与后一部分开头的链接即可。

注意操作顺序,防止断链或者成环。题不难。时间O(N),空间O(1)。






猜你喜欢

转载自blog.csdn.net/u013300579/article/details/79981410