首页 > 其他 > 详细

单向链表的反转

时间:2020-01-07 09:45:08      阅读:69      评论:0      收藏:0      [点我收藏+]

单向链表反转一般有两种实现思路:

  • 循环遍历
  • 递归

代码如下:

package constxiong.interview;

import constxiong.interview.SingleLinkedList.Node;

/**
 * 反转单向列表
 * 
 * @author ConstXiong
 * @date 2019-11-06 11:04:12
 */
public class TestReserveLinkedList {

    public static void main(String[] args) {
        SingleLinkedList<Integer> ll = new SingleLinkedList<Integer>();
        ll.add(1);
        ll.add(2);
        ll.add(3);
        ll.add(4);
        ll.add(5);
        ll.print();
        reverseLinkedList(ll);
        System.out.println();
        ll.print();
    }
    
    public static void reverseLinkedList(SingleLinkedList<Integer> ll) {
        Node<Integer> first = ll.first;
        reverseNode(first);
//        reverseNodeByRecursion(first);
        ll.first = ll.last;
        ll.last = first;
    }

    /**
     * 循环逆转节点指针
     * @param first
     */
    public static void reverseNode(Node<Integer> first) {
        Node<Integer> pre = null;
        Node<Integer> next = null;
        while (first != null) {
            next = first.next;
            first.next = pre;
            pre = first;
            first = next;
        }
        
    }

    /**
     * 递归逆转节点指针
     * @param head
     * @return
     */
    public static Node<Integer> reverseNodeByRecursion(Node<Integer> first) {
        if (first == null || first.next == null) {
            return first;
        }
        Node<Integer> prev = reverseNodeByRecursion(first.next);
        first.next.next = first;
        first.next = null;
        return prev;
    }
}

 


原文链接
 


技术分享图片

 

 

单向链表的反转

原文:https://www.cnblogs.com/ConstXiong/p/12159634.html

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