LeetCode 61. 旋转链表 JAVA 快慢指针

给定一个链表,旋转链表,将链表每个节点向右移动 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

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/rotate-list
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
/**
 * 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) {
        ListNode fast=head;
        ListNode slow=head;
        int cnt=0;
        while(fast!=null)
        {//得到链表长度
            fast=fast.next;
            cnt++;
        }
        if(cnt==0) return head;
        else k%=cnt;
        fast=head;
        for(int i=0;i<k;i++) fast=fast.next;//快慢指针修改结点从而旋转链表
        while(fast.next!=null)
        {
            fast=fast.next;
            slow=slow.next;
        }
        fast.next=head;
        ListNode reshead=slow.next;
        slow.next=null;
        return reshead;
    }
}

你可能感兴趣的:(java)