-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathqueues_LL.cpp
99 lines (91 loc) · 1.51 KB
/
queues_LL.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/*
*
* Title: Queue with linked list implementation.
* Author: Viswalahiri Swamy Hejeebu
* GitHub: https://github.com/Viswalahiri
* LinkedIn: https://in.linkedin.com/in/viswalahiri
*
*/
#include<iostream>
#include<bits/stdc++.h>
using namespace std;
struct Node
{
int data;
struct Node *next;
};
struct Node *head=NULL;
void dequeue()
{
if(head==NULL)
{
cout<<"Queue Underflow."<<endl;
return;
}
if(head->next==NULL)
{
struct Node *temp=head, *temp2;
if(temp!=NULL)
{
temp2=temp;
temp=temp->next;
}
// temp1=temp;
head=NULL;
cout<<"The dequeued value is "<<temp2->data<<endl;
free(temp2);
return;
}
else
{
struct Node *temp=head, *temp2;
while(temp->next!=NULL)
{
temp2=temp;
temp=temp->next;
}
temp2->next=NULL;
cout<<"The dequeued value is "<<temp->data<<endl;
free(temp);
return;
}
}
void enqueue(int value)
{
struct Node *new_node;
new_node = (struct Node*)malloc(sizeof(struct Node));
cout<<"The value "<<value<<" has been pushed."<<endl;
new_node->data=value;
new_node->next=head;
head=new_node;
}
//Driver Program
int main()
{
while(1)
{
cout<<"1 - enqueue"<<endl;
cout<<"2 - dequeue"<<endl;
cout<<"3 - exit"<<endl;
int choice;
cin>>choice;
switch(choice)
{
case 1:
cout<<"Push what?"<<endl;
int to_push;
cin>>to_push;
enqueue(to_push);
break;
case 2:
dequeue();
break;
case 3:
exit(0);
break;
default:
cout<<"The option you have requested isn't present."<<endl;
}
}
return 0;
}