-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpriority_queue.cpp
146 lines (132 loc) · 2.04 KB
/
priority_queue.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/*
*
* Title: Priority 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;
int priority;
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)
{
int p;
cout<<"Priority?"<<endl;
cin>>p;
struct Node *new_node;
new_node = (struct Node*)malloc(sizeof(struct Node));
new_node->priority = p;
new_node->data=value;
struct Node *temp=head,*temp2;
if(head==NULL)
{
head=new_node;
new_node->next=NULL;
}
else
{
int counter=0;
//
while(temp!=NULL && temp->priority > p)
{
counter=1;
temp2=temp;
temp=temp->next;
}
if(temp!=NULL)
{
// if temp not null
if(counter==0)
{
new_node->next=head;
head=new_node;
}
else
{
temp2->next= new_node;
new_node->next=temp;
}
}
else
{
temp2->next=new_node;
new_node->next=NULL;
}
// new_node->next=head;
// head=new_node;
}
cout<<"The value "<<value<<" has been pushed."<<endl;
return;
}
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;
}