Learning Queues in c++
Learning Queues in c++
In this tutorial, you will learn 1. The concept of queues 2. Implementation of queue 3. Array Based implementation of queues What is the concept behind queues? Queue is a type of data structures which works on the basis of First In First Out “FIFO”. It means that the data coming first is discharged first. Thus, data is entered from one end and taken out from other end. It is a linear data structure. Example: To understand, queues better, we can take example of a ticket line. In a line, the person entering first is always served first.- Read more about Learning Queues in c++
- Log in or register to post comments
- 111 views