Skip to content
Home ยป Data Structures

Data Structures

Stack

Stack is a linear data structure that is widely used in operating systems and many applications. The stack implies an office stack of files in… Read More »Stack

Queue

A queue is also an abstract data structure like the stack, except that the elements are inserted from read and deleted from the front. Therefore,… Read More »Queue

Linked List

Linked list is a linear data structure that uses dynamic memory to construct the list. There are many types of lists. Since, a list is… Read More »Linked List