Please enable JavaScript.
Coggle requires JavaScript to display documents.
STACKS AND QUEUES - Coggle Diagram
STACKS AND QUEUES
Stacks Vs Queue
STACK
-
Practical uses
-
-
undo ,redo concept to go to previous and next step.
-
-
-
What they both are ?
They are both what we call linear data structures and linear data structures allow us to traverse that is go through data elements sequentially one by one in which only one data element can be directly reached.
Are they similar ?
YES, and the reason that these are very similar is that they can be implemented in similar ways and the main difference is only how items get removed from this data structure .