
Welcome to this post.
This is the second post about data Structure.
In this post, we are going to learn about Queue data structure.
In the previous post, we discuss Stack. Stack is FILO type data structure.
But Queue is the FIFO data structure, that means the data enter first that also come first.
Src: Wikipedia
In queue, to data in the queue, the method is called enqueue()
and...