3. Linked list implementation of queues
Table of contents
- Structure of a linked list based queue
- Implementing a queue class using a linked list
- Determining the size of the queue
- Checking of the queue is empty
- Accessing the front of the queue
- Accessing the back of the queue
- Enqueuing an item in the queue
- Dequeuing an item from the queue
- Design a queue using linked list