图解单链表逆序

简介: 逆序思想代码测试本篇博客,比较简单。对单链表逆序不理解的看看就可以了。逆序思想现假设有一链表,有待逆序操作。我们首先想到的就是将那个指针关系逆序了就行了呗。

本篇博客,比较简单。对单链表逆序不理解的看看就可以了。


逆序思想

现假设有一链表,有待逆序操作。我们首先想到的就是将那个指针关系逆序了就行了呗。

事实上,就是这样。博主就是以这个为目标来完成的单链表逆序操作。

Node pre = null;
Node post = null;

while(head!=null){
  post = head.next;
  head.next = pre;
  pre = head;
  head = post;
}

这便是逆序的核心了。下面我们就来一步步的讲解。

  • 首次逆序:
    一开始的话,pre,post都设置为null。这是必须的,因为在head.next=pre这行代码执行完成后,我们原始的那个head节点的next将变成null,也就是我们整个链表的null了。

    想象一下,原来的那个链表的最后面的next不也是一个null吗?这里道理是一致的。

此时,更新pre为原来的head节点,也是为了下一步的逆序做准备,而head也自然的变成了原来的head.next了。

  • 不断逆序。
    单链表逆序

抱歉,手抖了一下,画错了。大家见谅。手绘图上的第五次示意pre节点应该在节点5的位置,没有了head

从图例中我们也不难看出,我们就是一次次的将head向后移,同时更新pre节点,来达到逆序的效果。

代码

/**
 * @Date 2016年9月9日
 *
 * @author 郭  璞
 *
 */
package list;

/**
 * @author 郭 璞
 * 
 *         <br>
 *         逆置单链表
 *
 */
public class ReverseList {

    public static void main(String[] args) {

        Node head = new Node(1);
        int[] value = {2,3,4,5};
        Node temp = head;
        for(int i = 0 ; i< value.length;i++) {
            Node node = new Node(value[i]);
            temp.next = node;
            temp = temp.next;
        }
        printList(head);
        // 反序输出一个单链表
        head = reverse(head);
        printList(head);

        // 再次反向
        head = reverseSingleList(head);
        printList(head);
    }


    public static void printList(Node head) {
        while(head!=null) {
            System.out.print("\t"+head.value);
            head = head.next;
        }
        System.out.println();
    }

    public static Node reverse(Node head) {
        Node pre = null;
        Node post = null;

        while(head!=null) {
            post = head.next;
            head.next = pre;
            pre = head;
            head = post;
        }
        return pre;
    }


    public static Node reverseSingleList(Node head) {
        Node pre = null;
        Node next = null;

        while(head!=null) {
            next = head.next;
            head.next = pre;
            pre = head;
            head = next;
        }

        return pre;
    }



}

class Node {
    public int value;
    public Node next;

    public Node(int value) {
        this.value = value;
    }
}

测试

经测试,代码输出正确。

    1   2   3   4   5
    5   4   3   2   1
    1   2   3   4   5
目录
相关文章
|
7月前
|
存储 算法 数据可视化
深入解析力扣160题:相交链表的解决方法(哈希表法与双指针法详细图解)
深入解析力扣160题:相交链表的解决方法(哈希表法与双指针法详细图解)
|
8月前
|
存储
图解顺序表+单链表-2
图解顺序表+单链表
40 2
|
8月前
|
存储 Java
图解顺序表+单链表-1
图解顺序表+单链表
47 2
|
7月前
|
算法
数据结构和算法学习记录——习题-翻转链表(不带表头结点逆置算法、带表头结点的链表逆置算法)
数据结构和算法学习记录——习题-翻转链表(不带表头结点逆置算法、带表头结点的链表逆置算法)
44 0
|
8月前
|
索引
【力扣刷题】回文链表、环形链表、合并两个有序链表
【力扣刷题】回文链表、环形链表、合并两个有序链表
44 0
|
存储
数组实现链表(AcWing)
数组实现链表(AcWing)
88 0
|
8月前
【Leetcode 2807】在链表中插入最大公约数 ——链表|数论
链表插入的基础操作:每次在原链表的相邻两个节点中插入一个新的节点,新节点的值为相邻两个节点的最大公约数,最后返回新的链表即可
【Leetcode -234.回文链表 -160.相交链表】
【Leetcode -234.回文链表 -160.相交链表】
27 0
图解LeetCode——108. 将有序数组转换为二叉搜索树
图解LeetCode——108. 将有序数组转换为二叉搜索树
829 1
图解LeetCode——19. 删除链表的倒数第 N 个结点
图解LeetCode——19. 删除链表的倒数第 N 个结点
111 1

热门文章

最新文章