Understanding Queues in Data Structures Using C++

When it comes to data structures in computer science, queues play a crucial role. Queues are a fundamental concept, and understanding how they work is essential for any programmer.
What Is a Queue?
A queue is a linear data structure that follows the First-In-First-Out (FIFO) principle. This means that the first element added to the queue will be the first one to be removed.
Think of it as a queue of people waiting in line, where the person who arrives first gets served first.
Key Characteristics of a Queue:
Enqueue: This operation adds an element to the end of the queue.
Dequeue: This operation removes an element from the front of the queue.
Front: This operation retrieves the element at the front without removing it.
Rear (or Back): This operation retrieves the element at the end without removing it.
Real-Life Analogy
A practical analogy for a queue is a line at a supermarket checkout. Customers join the queue in the order they arrive and get served in the order they joined. The first customer to join the line is the first to be served.
Queue Applications
Queues have various real-world applications and are used in a wide range of scenarios:
To-Do List Application: Create a command-line or graphical user interface (GUI) application for managing a to-do list. Use a queue to handle the tasks in a first-in-first-out (FIFO) manner.
Message Queue: Create a simple message queuing system where messages are produced and consumed by different processes or threads using a queue.
Music Playlist Queue: Build a music player application where users can create playlists by adding songs to a queue. The songs are played in the order they were added.
implementing a simple music playlist queue in C++:
in C++, you can implement a queue using an array or a linked list. Here's a basic example using an array:
#include <iostream>
using namespace std;
class MusicPlaylist {
private:
string playlist[10];
int front, rear;
public:
MusicPlaylist()
{
front = -1;
rear = -1;
}
bool isEmpty()
{
return front == -1;
}
bool isFull()
{
return (rear + 1) % 10 == front;
}
void enqueue(string song)
{
if (isFull()) {
cout << "Playlist is full. Can't add more songs." << endl;
return;
}
if (isEmpty())
{
front = 0;
rear = 0;
}
else
{
rear = (rear + 1) % 10;
}
playlist[rear] = song;
cout << song << " has been added to the playlist." << endl;
}
void dequeue()
{
if (isEmpty())
{
cout << "Playlist is empty. No song to dequeue." << endl;
return;
}
cout << "Now playing: " << playlist[front] << endl;
if (front == rear)
{
// Last song in the playlist
front = -1;
rear = -1;
} else
{
front = (front + 1) % 10;
}
}
void displayPlaylist()
{
if (isEmpty())
{
cout << "Playlist is empty." << endl;
return;
}
cout << "Current Playlist:" << endl;
int i = front;
while (true) {
cout << playlist[i] << endl;
if (i == rear) break;
i = (i + 1) % 10;
}
}
};
int main() {
MusicPlaylist playlist;
while (true) {
cout << "\nMenu:" << endl;
cout << "1. Add song to playlist\t" ;
cout << "2. Play next song\t" ;
cout << "3. Display playlist\t" ;
cout << "4. Quit\t" ;
int choice;
cout << "Enter your choice: ";
cin >> choice;
switch (choice) {
case 1: {
string song;
cout << "Enter the name of the song: ";
cin.ignore(); // Clear the input buffer
getline(cin, song); playlist.enqueue(song);
break;
}
case 2: {
playlist.dequeue();
break;
}
case 3: {
playlist.displayPlaylist();
break;
}
case 4: {
cout << "Goodbye!" << endl;
return 0;
}
default: {
cout << "Invalid choice. Try again." << endl;
}
}
}
return 0;
}
Output:
3 Comments
https://skbdev.com/queue-data-structure/
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDelete