反转单链表

Posted hglibin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了反转单链表相关的知识,希望对你有一定的参考价值。

反转单链表主要有两种方式:

  • 1、迭代法
    技术图片

  • 2、递归法
    技术图片

  • Java代码
class ListNode {
    int val;
    ListNode next;

    ListNode(int val) {
        this.val = val;
        next = null;
    }

    @Override
    public String toString() {
        return val + "->" + next;
    }
}

public class ReverseListedList {
    public static void main(String[] args) {
        ListNode head = new ListNode(1);
        ListNode a = new ListNode(2);
        ListNode b = new ListNode(3);
        ListNode c = new ListNode(4);
        ListNode d = new ListNode(5);
        head.next = a;
        a.next = b;
        b.next = c;
        c.next = d;

        System.out.println("链表反转前:" + head);
        head = reverseListByIterative(head);
        System.out.println("迭代反转后:" + head);

        head = reverseListByRecursive(head);
        System.out.println("递归反转后:" + head);
    }

    public static ListNode reverseListByIterative(ListNode head) {
        if (head == null)
            return head;
        ListNode dummy = new ListNode(-1);
        dummy.next = head;
        ListNode prev = dummy.next;
        ListNode pcur = prev.next;
        while (pcur != null) {
            prev.next = pcur.next;
            pcur.next = dummy.next;
            dummy.next = pcur;
            pcur = prev.next;
        }
        return dummy.next;
    }

    public static ListNode reverseListByRecursive(ListNode head) {
        if (head == null || head.next == null) {
            return head;
        }
        ListNode newHead = reverseListByRecursive(head.next);
        head.next.next = head;
        head.next = null;
        return newHead;
    }
}
  • 运行结果
    链表反转前:1->2->3->4->5->null
    迭代反转后:5->4->3->2->1->null
    递归反转后:1->2->3->4->5->null

以上是关于反转单链表的主要内容,如果未能解决你的问题,请参考以下文章

手撕代码之反转单链表

反转单链表

单链表反转

小代码 单链表之反转 然后交错重连+稀疏矩阵

递归-反转单链表 -图解

看一遍就理解,图解单链表反转