| Dynamic Data Structure |
| |
| Queue |
| |
| Queue is also a list. Here, the data items are added at one end and removed from the other hand work as first in first out for storage and retrieval. |
| |
| Queues are used extensively in operating systems to keep track of user waiting for resources such as CPU, printing etc. |
| |
| It adopts FIFO(first in first out )methodology for storage and retrieval. |
| |
| |
| |
| |
| |
| |
| |
| |