码迷,mamicode.com
首页 > 其他好文 > 详细

反转单链表

时间:2019-03-23 22:16:04      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:stat   err   iter   .com   mamicode   null   ever   class   alt   

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

  • 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

反转单链表

标签:stat   err   iter   .com   mamicode   null   ever   class   alt   

原文地址:https://www.cnblogs.com/hglibin/p/10585879.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!