Linked List Revision in JAVA
Today we go through the basics of linked lists in Java.
Firstly we learn about how an element is added to the first position as head:
Steps: S-1: Create a new Node.
S-2: Check if the head is equal to null, if null then make tail equals head equals ne...
shayawing.hashnode.dev2 min read