Insertion at end in Singly Linked List in Java
Singly Linked List insertion at end Program in Java
On this blog we will try to learn to write Insertion at end in Singly Linked List in Java.
We will look at two different methods for Linked List insertion at end in Java
Implementation
For Insertion at nth position in singly Linked List in Java we’ll have to follow these steps:
- First, Traverse the list from head to last position.
- After traversing the list add the new node and allocate memory space to it.
- Point the next pointer of the new node to the null.
- Point the next pointer of current node to the new node.
Algorithm for Insertion at End in Singly Linked List
- IF HEAD == NULL
EXIT - ELSE
- NEW_NODE = ADDNODE()
- NEW_NODE -> DATA = ITEM
- PTR = NULL
- NEW -> NEXT = NULL
- PREV.PTR = NEW_NODE
- EXIT
Code in JAVA Language
Method 1
Method 2
Method 1
This Program works with objects.
Run
// Java Program for Singly Linked List Insertion at End Program in Java import java.lang.*; class LinkedList { Node head; // Node Class class Node{ int data; Node next; Node(int x) // parameterized constructor { data = x; next = null; } } public void insertEnd(int data) { // Creating newNode memory & assigning data value Node newNode = new Node(data); // if Linked List was empty, entering first node if(head==null) { head = newNode; System.out.println(newNode.data + " inserted"); return; } // required to traverse the Linked List Node temp = head; // traverse till the last node in Linked List while(temp.next!=null) temp = temp.next; // assigning the current last node's next to this newNode // thus newNode becomes the last node in Linked List temp.next = newNode; System.out.println(newNode.data + " inserted"); } public void display() { System.out.println(); Node node = head; //as linked list will end when Node reaches Null while(node!=null) { System.out.print(node.data + " "); node = node.next; } System.out.println(); } } public class Main { public static void main(String args[]) { LinkedList ll = new LinkedList(); ll.insertEnd(50); ll.insertEnd(40); ll.insertEnd(30); ll.insertEnd(20); ll.insertEnd(10); ll.display(); } }
Output
50 inserted 40 inserted 30 inserted 20 inserted 10 inserted 50 40 30 20 10
Method 2
This program works with static functions
Run
import java.lang.*; // Node Class class Node { int data; Node next; Node(int x) { data = x; next = null; } } class Main { static Node insertEnd(Node head, int data) { // Creating newNode memory & assigning data value Node newNode = new Node(data); // if Linked List was empty, entering first node if(head==null) { head = newNode; System.out.println(newNode.data + " inserted"); return head; } // required to traverse the Linked List Node temp = head; // traverse till the last node in Linked List while(temp.next!=null) temp = temp.next; // assigning the current last node's next to this newNode // thus newNode becomes the last node in Linked List temp.next = newNode; System.out.println(newNode.data + " inserted"); return head; } static void display(Node node) { System.out.println(); //as linked list will end when Node is Null while (node != null) { System.out.print(node.data + " "); node = node.next; } System.out.println(); } public static void main(String args[]) { Node head = null; head = insertEnd(head,50); head = insertEnd(head,40); head = insertEnd(head,30); head = insertEnd(head,20); head = insertEnd(head,10); display(head); } }
Output
50 inserted 40 inserted 30 inserted 20 inserted 10 inserted 50 40 30 20 10
Prime Course Trailer
Related Banners
Get PrepInsta Prime & get Access to all 200+ courses offered by PrepInsta in One Subscription
Get over 200+ course One Subscription
Courses like AI/ML, Cloud Computing, Ethical Hacking, C, C++, Java, Python, DSA (All Languages), Competitive Coding (All Languages), TCS, Infosys, Wipro, Amazon, DBMS, SQL and others
Singly Linked List
- Introduction to Linked List in Data Structure
- Linked List in – C | C++ | Java
- Singly Linked List in – C | C++ | Java
- Insertion in singly Linked List – C | C++ | Java
- Deletion in singly Linked List – C | C++ | Java
- Reverse a linked list without changing links between nodes (Data reverse only) – C | C++ | Java
- Linked List Insertion and Deletion – C | C++ | Java
- Reverse a linked list by changing links between nodes – C | C++ | Java
- Linked List insertion in the middle – C | C++ | Java
- Print reverse of a linked list without actually reversing – C |C++ | Java
- Search an element in a linked list – C | C++ | Java
- Insertion in a Sorted Linked List – C | C++ | Java
- Delete alternate nodes of a Linked List – C | C++ | Java
- Find middle of the linked list – C | C++ | Java
- Reverse a linked list in groups of given size – C | C++ | Java
- Find kth node from end of the linked list – C | C++ | Java
- Append the last n nodes of a linked list to the beginning of the list – C | C++ | Java
- Check whether linked list is palindrome or not – C | C++ | Java
- Fold a Linked List – C | C++ | Java
- Insert at a given position – C | C++ | Java
- Delete at a given position – C | C++ | Java
Singly Linked List
- Introduction to Linked List in Data Structure
Click Here - Linked List in –
- Singly Linked List in –
- Insertion in singly Linked List –
- Insertion at beginning in singly Linked List –
- Insertion at nth position in singly Linked List –
- Insertion at end in singly Linked List –
- Deletion in singly Linked List –
- Deletion from beginning in singly linked list :
- Deletion from nth position in singly linked list :
- Deletion from end in singly linked list :
- Linked List Insertion and Deletion –
C | C++ | Java - Reverse a linked list without changing links between nodes (Data reverse only) –
C | C++ | Java - Reverse a linked list by changing links between nodes –
- Print reverse of a linked list without actually reversing –
- Print reverse of a linked list without actually reversing –
- Insertion in the middle Singly Linked List –
- Insertion in a Sorted Linked List –
- Delete alternate nodes of a Linked List –
- Find middle of the linked list –
- Reverse a linked list in groups of given size –
- Find kth node from end of the linked list –
- Append the last n nodes of a linked list to the beginning of the list –
- Check whether linked list is palindrome or not –
- Fold a Linked List –
- Insert at given Position –
- Deletion at given Position –
Login/Signup to comment