Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Linked List

Linked List is a linear data structure in which the elements are not stored at contiguous memory locations. A node in a linked list stores data and the address to the next node.
Functions implemented are:

Length of LL
Insertion
Deletion
Searching
Printing LL
Calculating Mid of LL