这道题目是链表倒转的重要总结

https://leetcode.com/problems/reverse-nodes-in-k-group/?tab=Description

 

解答:

https://discuss.leetcode.com/topic/7126/short-but-recursive-java-code-with-comments

 

关于链表倒转,开始我都是想加一个dummy node,但是后来发现,也不是完全必要。

 

看上面的解法,就处理的非常简洁,用三个指针,

a->b->c

 

head = a;

cur = null;

tmp = head->next;

head->next = cur;

cur = head;

head = tmp;

这时候,就变成了 a->null, b->c,并且cur指向a,head指向b,

然后一直走到 tmp == null的时候,就不需要把head变成tmp了,直接返回head就可以了。

或者,最后head是null的时候,把cur返回就可以了,因为cur指向的是上一次的head,这也是原解法中的方式。

 

复制代码
public ListNode reverseKGroup(ListNode head, int k) {
    ListNode curr = head;
    int count = 0;
    while (curr != null && count != k) { // find the k+1 node
        curr = curr.next;
        count++;
    }
    if (count == k) { // if k+1 node is found
        curr = reverseKGroup(curr, k); // reverse list with k+1 node as head
        // head - head-pointer to direct part, 
        // curr - head-pointer to reversed part;
        while (count-- > 0) { // reverse current k-group: 
            ListNode tmp = head.next; // tmp - next head in direct part
            head.next = curr; // preappending "direct" head to the reversed list 
            curr = head; // move head of reversed part to a new node
            head = tmp; // move "direct" head to the next node in direct part
        }
        head = curr;
    }
    return head;
}
复制代码

 

posted @   blcblc  阅读(226)  评论(0编辑  收藏  举报
编辑推荐:
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
阅读排行:
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 【自荐】一款简洁、开源的在线白板工具 Drawnix
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· Docker 太简单,K8s 太复杂?w7panel 让容器管理更轻松!
点击右上角即可分享
微信分享提示