61. 旋转链表
给定一个链表,旋转链表,将链表每个节点向右移动 k 个位置,其中 k 是非负数。
示例 1:
输入: 1->2->3->4->5->NULL, k = 2
输出: 4->5->1->2->3->NULL
解释:
向右旋转 1 步: 5->1->2->3->4->NULL
向右旋转 2 步: 4->5->1->2->3->NULL
示例 2:
输入: 0->1->2->NULL, k = 4
输出: 2->0->1->NULL
解释:
向右旋转 1 步: 2->0->1->NULL
向右旋转 2 步: 1->2->0->NULL
向右旋转 3 步: 0->1->2->NULL
向右旋转 4 步: 2->0->1->NULL
普通解答如下:
/**
* Definition for singly-linked list. public class ListNode { int val; ListNode
* next; ListNode(int x) { val = x; } }
*/
class ListNode {
int val;
ListNode next;
ListNode(int x) {
val = x;
}
}
class Solution {
public ListNode rotateRight(ListNode head, int k) {
int length = len(head);
if (head == null || k == 0 || k % length == 0)// 空链表或者k为0都会引发此异常java.lang.ArithmeticException: / by zero
return head;
int[] nodes = new int[length];
ListNode temp = head;
for (int i = 0; i != length; ++i) {
// 第i个位置的节点移动到第(i+k)%length的位置上
nodes[(i + k) % length] = temp.val;
temp = temp.next;
}
temp = head;
for (int i = 0; i != length; ++i) {
temp.val = nodes[i];
temp = temp.next;
}
return head;
}
public int len(ListNode head) {
int len = 0;
while (head != null) {
++len;
head = head.next;
}
return len;
}
}