What is Queue?

Similar to the linked list ,Queue is also an Storage type data structure to store the data.Queue is also an Sequential type data structure.Queue have the following properties : Queue in Real Life Operations of Queue There are following some Read More …

Circular Doubly Linked List(CDLL)

Structure of Circular Linked List is Following : Example : Node Representation Operations of Circular Doubly Linked List(CDLL) There are following operations ,we can apply on Circular Doubly linked list : Insertion of node at beginning(front) in CDLL : Insertion Read More …

Searching of Data in DLL

In Doubly Linked List(DLL), If we want to know the existence of an data element then we have to apply Search operation : First we have to create one Temp variable,and assign the address of HeadPointer to it. Now start Read More …