给定一个链表,旋转链表,将链表每个节点向右移动 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
思路: 方法一:直接模拟即可。
class ListNode {
int val;
ListNode next;
ListNode(int x) { val = x; }
}
class Solution {
public ListNode rotateRight(ListNode head, int k) {
if(head==null)
return head;
ListNode a=new ListNode(0),b=head,c=head,d=head;
int length=0;
while(d!=null)
{
length++;
d=d.next;
}
k=k%length;
a.next=head;b=a.next;c=a.next;
int[] myArrays=new int[100005];
int len=0,t=0;
while(b!=null)
{
myArrays[len++]=b.val;
b=b.next;
if(len==k)
c=b;
}
while(c!=null)
{
c.val=myArrays[t++];
c=c.next;
}
c=a.next;
while(t<len)
{
c.val=myArrays[t++];
c=c.next;
}
return a.next;
}
}
方法二(官方题解):https://leetcode-cn.com/problems/rotate-list/solution/xuan-zhuan-lian-biao-by-leetcode/
class ListNode {
int val;
ListNode next;
ListNode(int x) { val = x; }
}
class Solution {
public ListNode rotateRight(ListNode head, int k) {
if(head==null) return null;
if(head.next==null) return head;
ListNode old_tail=head;
int n;
for(n=1;old_tail.next!=null;n++)
old_tail=old_tail.next;
old_tail.next=head;
ListNode new_tail=head;
for(int i=0;i<n-k%n-1;i++)
new_tail=new_tail.next;
ListNode new_head=new_tail.next;
new_tail.next=null;
return new_head;
}
}