Tag Data Structures

Queue

Queue data structure
Queue is an abstract data structure that follows a particular order in which operations are performed on it. The method in which those operations are done is called as First-In-First-Out (or Last-In-Last-Out).
Read more...

Stack

Stack Data Structure Image
Stack is a very simple data structure with predefined size which allows inserting or removing elements in a particular order.
Read more...