61,旋转链表

给定一个链表,旋转链表,将链表每个节点向右移动 个位置,其中 是非负数。

示例 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

解题思路:先把链表首尾相连,然后在K位置断开

/**
 * Definition for singly-linked list.
 * public 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 dumy=new ListNode(0);
        dumy.next=head;
        ListNode cur=dumy.next;
    
        int length=1;
       // ListNode cur=dumy.next;
        while(cur.next!=null)
        {
           length++;
           cur=cur.next; 
        }
        k=k%length;
        cur.next=head;
        for(int i=0;i<(length-k%length);i++)
        {
            cur=cur.next;
        }
        ListNode newhead=cur.next;
        cur.next=null;
       return newhead; 
    }
}

猜你喜欢

转载自blog.csdn.net/huanghuansen/article/details/83268884