Skip to content

stabgan/Generic-Linked-List-Class-from-Scratch-in-Java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

A Generic Custom LinkedList Class in Java

Methods :

  1. Append(data) - Append data at end of linkedlist.
  2. Display() - Display whole contents.
  3. Pop() - Removes last element.
  4. Delete(index)= Deletes element at certain index.
  5. InsertAtBeginning(data) - Inserts element at the very beginning.
  6. Clear() - Clears the whole Linkedlist.

output