📌  相关文章
📜  用于打印链接列表的反向而不实际反转的Java程序

📅  最后修改于: 2022-05-13 01:55:19.720000             🧑  作者: Mango

用于打印链接列表的反向而不实际反转的Java程序

给定一个链表,使用递归函数打印它的反向。例如,如果给定的链表是 1->2->3->4,那么输出应该是 4->3->2->1。
请注意,问题只是关于打印反向。要反转列表本身,请参阅此
难度级别:新手

反向链接列表

算法:

printReverse(head)
  1. call print reverse for head->next
  2. print head->data

执行:

Java
// Java program to print reverse 
// of a linked list
class LinkedList
{
    // Head of list
    Node head;  
  
    // Linked list Node
    class Node
    {
        int data;
        Node next;
        Node(int d) 
        {
            data = d; 
            next = null; 
        }
    }
  
    // Function to print reverse of 
    // linked list 
    void printReverse(Node head)
    {
        if (head == null) return;
  
        // Print list of head node
        printReverse(head.next);
  
        // After everything else is printed,
        //  Print head
        System.out.print(head.data + " ");
    }
  
    // Utility Functions 
  
    // Inserts a new Node at front 
    // of the list. 
    public void push(int new_data)
    {
        /* 1 & 2: Allocate the Node &
                  Put in the data*/
        Node new_node = new Node(new_data);
  
        // 3. Make next of new Node as head 
        new_node.next = head;
  
        // 4. Move the head to point 
        // to new Node 
        head = new_node;
    }
  
    // Driver code
    public static void main(String args[])
    {
        // Create linked list 1->2->3->4
        LinkedList llist = new LinkedList();
        llist.push(4);
        llist.push(3);
        llist.push(2);
        llist.push(1);
  
        llist.printReverse(llist.head);
    }
}
// This code is contributed by Rajat Mishra


输出:

4 3 2 1

时间复杂度: O(n)

有关详细信息,请参阅有关打印链接列表的反向而不实际反转的完整文章!