DATA STRUCTURES

Queue in c

Queue in c  is a simple c program to implement queue data structure. In this tutorial, we will see the implementation of queue in c. The queue is a linear type of data structure. It is an unordered group of the element in which elements is added at one end (rear end) and removed from …

Queue in c Read More »

Stack

Stack is linear type of Data Structure. Stack works on a FIRST IN LAST OUT  or LAST IN FIRST OUT fashion. Lets see example stack meaning Stack Example Consider an container or CD’S that is we put CD’S on one another and if we want to take CD’S out then we have to remove the CD which is at the …

Stack Read More »