Java program to create a singly linked list of n nodes and display it in reverse order
public class ReverseList {
//Represent a node of the singly linked list
class Node{
int data;
Node next;
public Node(int data) {
this.data = data;
this.next = null;
}
}
//Represent the head and tail of the singly linked list
public Node head = null;
public Node tail = null;
//addNode() will add a new node to the list
public void addNode(int data) {
//Create a new node
Node newNode = new Node(data);
//Checks if the list is empty
if(head == null) {
//If list is empty, both head and tail will point to new node
head = newNode;
tail = newNode;
}
else {
//newNode will be added after tail such that tail's next will point to newNode
tail.next = newNode;
//newNode will become new tail of the list
tail = newNode;
}
}
//reverse() will help the reverse the order of the list
public void reverse(Node current) {
//Checks if list is empty
if(head == null) {
System.out.println("List is empty");
return;
}
else {
//Checks if the next node is null, if yes then prints it.
if(current.next == null) {
System.out.print(current.data + " ");
return;
}
//Recursively calls the reverse function
reverse(current.next);
System.out.print(current.data + " ");
}
}
//display() will display all the nodes present in the list
public void display() {
//Node current will point to head
Node current = head;
if(head == null) {
System.out.println("List is empty");
return;
}
while(current != null) {
//Prints each node by incrementing pointer
System.out.print(current.data + " ");
current = current.next;
}
System.out.println();
}
public static void main(String[] args) {
ReverseList sList = new ReverseList();
//Add nodes to the list
sList.addNode(1);
sList.addNode(2);
sList.addNode(3);
sList.addNode(4);
System.out.println("Original List: ");
sList.display();
System.out.println("Reversed List: ");
//Print reversed list
sList.reverse(sList.head);
}
}
Output:
Original List:
1 2 3 4
Reversed List:
4 3 2 1
