@@ -5,10 +5,10 @@ using namespace std;
5
5
class Queue
6
6
{
7
7
private:
8
- int front;
9
- int rear;
10
- int size;
11
- int * Q;
8
+ int front; // front is used for deletion
9
+ int rear; // rear is used for insertion
10
+ int size; // size of the queue
11
+ int * Q; // dynamically allocated space for queue
12
12
public:
13
13
Queue () // Non-parameterized constructor //front and rear are assigned as -1 //indicates Queue is empty
14
14
{
@@ -22,33 +22,33 @@ class Queue
22
22
this ->size = size;
23
23
Q = new int [this ->size ];
24
24
}
25
- void enqueue (int x);
26
- int dequeue ();
27
- void display ();
25
+ void enqueue (int x); // declaration for insertion element in the queue
26
+ int dequeue (); // declaration for deletion of the element queue
27
+ void display (); // declaration for displaying the queue
28
28
};
29
29
30
- void Queue::enqueue (int x)
30
+ void Queue::enqueue (int x) // passing the value as parameter for insertion
31
31
{
32
- if (rear == size - 1 )
32
+ if (rear == size - 1 ) // condition for checking queuefull
33
33
cout << " Queue is Full" << endl;
34
34
else
35
35
{
36
- rear++;
37
- Q[rear] = x;
36
+ rear++; // increament the rear and then insert the value in the queue
37
+ Q[rear] = x; // insertion of the element.
38
38
}
39
39
}
40
40
41
41
int Queue::dequeue ()
42
42
{
43
- int x = -1 ;
44
- if (front == rear)
43
+ int x = -1 ; // initially set the value of the x to -1; setting
44
+ if (front == rear) // condition for cheking the queue empty
45
45
cout << " Queue is Empty" << endl;
46
46
else
47
47
{
48
- front++;
48
+ front++; // increment the front and take out the element
49
49
x = Q[front];
50
50
}
51
- return x;
51
+ return x; // return the deleted value
52
52
}
53
53
54
54
void Queue::display ()
@@ -61,16 +61,16 @@ void Queue::display()
61
61
62
62
int main ()
63
63
{
64
- Queue q (5 );
64
+ Queue q (5 ); // Creating an instance for class and setting the size as 5
65
65
66
- q.enqueue (10 );
66
+ q.enqueue (10 ); // inserting the value in queue
67
67
q.enqueue (20 );
68
68
q.enqueue (30 );
69
69
q.enqueue (40 );
70
70
71
- q.display ();
72
- q.dequeue ();
73
- q.display ();
71
+ q.display (); // displaying queue
72
+ q.dequeue (); // deleting the value from the queue.
73
+ q.display (); // then displaying it after deletion
74
74
75
75
return 0 ;
76
- }
76
+ }
0 commit comments