Introduction to LinkedList

LinkedList is one of the linear Data Structure. LinkedList is a collection of multiple nodes and they are connected using pointer (reference) address. Nodes (elements) are stored in a non-contiguous memory location which means different memory locations. LinkedList is of three types such as Singly-linkedList, Doubly LinkedList, and Circular LinkedList….

Continue reading