首页 > 其他 > 详细

递归反转单链表

时间:2020-12-30 22:13:24      阅读:25      评论:0      收藏:0      [点我收藏+]

上篇https://www.cnblogs.com/PlumBlossoms/p/14211026.html写了如何以迭代的方式反转单链表,本篇记录递归的方式。理解递归的方式不要陷入循环中,而是要明确一个函数输入的是什么,返回的是什么。以 {1,2,3,4,5,6,7} 为例:

1. 反转整个链表

public static LinkNode Reverse(LinkNode head) {
    if (head.next == null) return head;
    LinkNode last = Reverse(head.next);  //假设{2,3,4,5,6,7}→{7,6,5,4,3,2}已经反转完成,last 指向节点 7
    head.next.next = head;              //将{1}与 last 连接起来
    head.next = null;
    return last;        
}

2. 反转链表的前N个节点

LinkNode next = null;
public LinkNode ReverseN(LinkNode head, int n) {
    if (n == 1) {
        next = head.next;
        return head;
    }
    LinkNode last = ReverseN(head.next, n-1);
    head.next.next = head;
    head.next = next;
    return last;        
}

设 head 节点索引为1,则反转1到n 的节点,相当于递归反转 2 到 n-1,3 到 n-2 ... 的节点,last 始终指向反转好的链表的头节点。

3. 反转区间 [a, b) 内的节点

public LinkNode Reverse(LinkNode head, int m, int n) {
    if (m == 1) {
        return ReverseN(head, n); //然后开始反转
    }
    //首先递归找到第 m 个节点
    head = Reverse(head.next, m-1, n-1);        
    return head;        
}

递归反转单链表

原文:https://www.cnblogs.com/PlumBlossoms/p/14211608.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!