题解 | #链表中的节点每k个一组翻转#

链表中的节点每k个一组翻转

https://www.nowcoder.com/practice/b49c3dc907814e9bbfa8437c251b028e

import java.util.*;

/*

  • public class ListNode {
  • int val;
  • ListNode next = null;
  • } */

public class Solution { /** * * @param head ListNode类 * @param k int整型 * @return ListNode类 */ public ListNode reverseKGroup (ListNode head, int k) { // write code here if (head == null) { return head; } ListNode newHead = new ListNode(-1); newHead.next = head; head = newHead;

    ListNode pre = head;
    ListNode post = head;

    while (post != null) {
        int i = 0;
        while (i < k) {
            post = post.next;
            if (post == null) {
                return head.next;
            }
            i++;
        }

        ListNode node = pre.next;
        ListNode tmp = node;
        int j = 1;
        while (j <= k) {
            ListNode t = node.next;
            node.next = pre.next;
            pre.next = node;
            node = t;
            j++;
        }
        tmp.next = node;
        pre = tmp;
        post = pre;

    }
    return head.next;

}

}

/*

 * public class ListNode {

 *   int val;

 *   ListNode next = null;

 * }

 */

public class Solution {

    /**

     *

     * @param head ListNode类

     * @param k int整型

     * @return ListNode类

     */

    public ListNode reverseKGroup (ListNode headint k) {

        // write code here

        if (head == null) {

            return head;

        }

        ListNode newHead = new ListNode(-1);

        newHead.next = head;

        head = newHead;

        ListNode pre = head;

        ListNode post = head;

        while (post != null) {

            int i = 0;

            while (i < k) {

                post = post.next;

                if (post == null) {

                    return head.next;

                }

                i++;

            }

            ListNode node = pre.next;

            ListNode tmp = node;

            int j = 1;

            while (j <= k) {

                ListNode t = node.next;

                node.next = pre.next;

                pre.next = node;

                node = t;

                j++;

            }

            tmp.next = node;

            pre = tmp;

            post = pre;

        }

        return head.next;

    }

}

全部评论

相关推荐

不愿透露姓名的神秘牛友
11-20 19:57
已编辑
某大厂 golang工程师 23.0k*16.0, 2k房补,年终大概率能拿到
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务