-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path00_QueueOverview.cpp
More file actions
404 lines (329 loc) · 11.1 KB
/
Copy path00_QueueOverview.cpp
File metadata and controls
404 lines (329 loc) · 11.1 KB
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
/*
================================================================================
QUEUE - OVERVIEW
================================================================================
FIFO (First In, First Out) data structure.
Think of a line at a ticket counter - first person in line is served first.
Operations:
- push/enqueue(x) : Add element to back - O(1)
- pop/dequeue() : Remove front element - O(1)
- front() : View front element - O(1)
- back() : View back element - O(1)
- isEmpty() : Check if empty - O(1)
- size() : Get number of elements - O(1)
================================================================================
QUEUE TYPES
================================================================================
1. SIMPLE QUEUE
- Basic FIFO queue
- Insert at rear, remove from front
2. CIRCULAR QUEUE
- Fixed size, wraps around
- Efficient use of array space
3. DEQUE (Double-Ended Queue)
- Insert/remove from both ends
- Used in Sliding Window Maximum
4. PRIORITY QUEUE
- Elements ordered by priority
- Implemented with heap (see Heap folder)
================================================================================
WHEN TO USE QUEUE
================================================================================
1. BFS (Breadth-First Search)
- Level-order traversal
- Shortest path in unweighted graph
2. SLIDING WINDOW PROBLEMS
- Sliding Window Maximum (monotonic deque)
- Moving Average
3. TASK SCHEDULING
- Round-robin scheduling
- Process queue
4. CACHING
- LRU Cache (with doubly linked list)
- FIFO Cache
5. RATE LIMITING
- Fixed window counter
- Sliding window log
================================================================================
C++ STL QUEUE
================================================================================
*/
#include <iostream>
#include <queue>
#include <deque>
#include <vector>
using namespace std;
void stlQueueDemo() {
// Basic Queue
queue<int> q;
q.push(10);
q.push(20);
q.push(30);
cout << "Front: " << q.front() << endl; // 10
cout << "Back: " << q.back() << endl; // 30
cout << "Size: " << q.size() << endl; // 3
q.pop(); // Remove 10
cout << "After pop, Front: " << q.front() << endl; // 20
// Deque (Double-ended queue)
deque<int> dq;
dq.push_back(1); // [1]
dq.push_front(2); // [2, 1]
dq.push_back(3); // [2, 1, 3]
cout << "\nDeque front: " << dq.front() << endl; // 2
cout << "Deque back: " << dq.back() << endl; // 3
dq.pop_front(); // [1, 3]
dq.pop_back(); // [1]
}
/*
================================================================================
QUEUE IMPLEMENTATIONS
================================================================================
*/
// 1. ARRAY-BASED QUEUE (Simple, not circular)
class SimpleQueue {
private:
int* arr;
int frontIdx, rearIdx;
int capacity;
public:
SimpleQueue(int size = 100) {
capacity = size;
arr = new int[capacity];
frontIdx = 0;
rearIdx = -1;
}
~SimpleQueue() { delete[] arr; }
void push(int val) {
if (rearIdx >= capacity - 1) {
cout << "Queue Overflow!" << endl;
return;
}
arr[++rearIdx] = val;
}
int pop() {
if (isEmpty()) {
cout << "Queue Underflow!" << endl;
return -1;
}
return arr[frontIdx++];
}
int front() {
if (isEmpty()) return -1;
return arr[frontIdx];
}
bool isEmpty() { return frontIdx > rearIdx; }
int size() { return rearIdx - frontIdx + 1; }
};
// 2. CIRCULAR QUEUE
// LeetCode: 622. Design Circular Queue
class MyCircularQueue {
private:
vector<int> arr;
int frontIdx, rearIdx;
int count, capacity;
public:
MyCircularQueue(int k) {
arr.resize(k);
capacity = k;
frontIdx = 0;
rearIdx = -1;
count = 0;
}
bool enQueue(int value) {
if (isFull()) return false;
rearIdx = (rearIdx + 1) % capacity; // Wrap around
arr[rearIdx] = value;
count++;
return true;
}
bool deQueue() {
if (isEmpty()) return false;
frontIdx = (frontIdx + 1) % capacity; // Wrap around
count--;
return true;
}
int Front() {
if (isEmpty()) return -1;
return arr[frontIdx];
}
int Rear() {
if (isEmpty()) return -1;
return arr[rearIdx];
}
bool isEmpty() { return count == 0; }
bool isFull() { return count == capacity; }
};
// 3. LINKED LIST QUEUE
struct ListNode {
int val;
ListNode* next;
ListNode(int x) : val(x), next(nullptr) {}
};
class LinkedQueue {
private:
ListNode* head; // Front
ListNode* tail; // Rear
int count;
public:
LinkedQueue() : head(nullptr), tail(nullptr), count(0) {}
~LinkedQueue() {
while (head) {
ListNode* temp = head;
head = head->next;
delete temp;
}
}
void push(int val) {
ListNode* node = new ListNode(val);
if (!tail) {
head = tail = node;
} else {
tail->next = node;
tail = node;
}
count++;
}
int pop() {
if (isEmpty()) return -1;
int val = head->val;
ListNode* temp = head;
head = head->next;
if (!head) tail = nullptr;
delete temp;
count--;
return val;
}
int front() {
if (isEmpty()) return -1;
return head->val;
}
int back() {
if (isEmpty()) return -1;
return tail->val;
}
bool isEmpty() { return count == 0; }
int size() { return count; }
};
// 4. CIRCULAR DEQUE
// LeetCode: 641. Design Circular Deque
class MyCircularDeque {
private:
vector<int> arr;
int frontIdx, rearIdx;
int count, capacity;
public:
MyCircularDeque(int k) {
arr.resize(k);
capacity = k;
frontIdx = 0;
rearIdx = k - 1;
count = 0;
}
bool insertFront(int value) {
if (isFull()) return false;
frontIdx = (frontIdx - 1 + capacity) % capacity;
arr[frontIdx] = value;
count++;
return true;
}
bool insertLast(int value) {
if (isFull()) return false;
rearIdx = (rearIdx + 1) % capacity;
arr[rearIdx] = value;
count++;
return true;
}
bool deleteFront() {
if (isEmpty()) return false;
frontIdx = (frontIdx + 1) % capacity;
count--;
return true;
}
bool deleteLast() {
if (isEmpty()) return false;
rearIdx = (rearIdx - 1 + capacity) % capacity;
count--;
return true;
}
int getFront() {
if (isEmpty()) return -1;
return arr[frontIdx];
}
int getRear() {
if (isEmpty()) return -1;
return arr[rearIdx];
}
bool isEmpty() { return count == 0; }
bool isFull() { return count == capacity; }
};
/*
================================================================================
PATTERN CLASSIFICATION
================================================================================
1. BASIC PROBLEMS (01_BasicProblems.cpp)
─────────────────────────────────────────
- Implement Stack using Queues (LC 225)
- Implement Queue using Stacks (LC 232)
- Moving Average from Data Stream (LC 346)
- Recent Counter (LC 933)
- Number of Recent Calls
2. MONOTONIC DEQUE (02_MonotonicDeque.cpp) ⭐
─────────────────────────────────────────────
- Sliding Window Maximum (LC 239)
- Shortest Subarray with Sum >= K (LC 862)
- Jump Game VI (LC 1696)
- Constrained Subsequence Sum (LC 1425)
3. BFS PATTERNS (see GraphTheory/01_bfs.cpp)
─────────────────────────────────────────────
- Level Order Traversal
- Shortest Path
- Rotting Oranges (LC 994)
- Word Ladder (LC 127)
================================================================================
*/
int main() {
cout << "=== Queue Overview ===" << endl << endl;
// STL Queue Demo
cout << "--- STL Queue Demo ---" << endl;
stlQueueDemo();
// Circular Queue Demo
cout << "\n--- Circular Queue Demo ---" << endl;
MyCircularQueue cq(3);
cout << "Enqueue 1: " << cq.enQueue(1) << endl;
cout << "Enqueue 2: " << cq.enQueue(2) << endl;
cout << "Enqueue 3: " << cq.enQueue(3) << endl;
cout << "Enqueue 4 (full): " << cq.enQueue(4) << endl;
cout << "Rear: " << cq.Rear() << endl;
cout << "Is Full: " << cq.isFull() << endl;
cout << "Dequeue: " << cq.deQueue() << endl;
cout << "Enqueue 4: " << cq.enQueue(4) << endl;
cout << "Rear: " << cq.Rear() << endl;
// Linked Queue Demo
cout << "\n--- Linked Queue Demo ---" << endl;
LinkedQueue lq;
lq.push(10);
lq.push(20);
lq.push(30);
cout << "Front: " << lq.front() << endl;
cout << "Back: " << lq.back() << endl;
cout << "Pop: " << lq.pop() << endl;
cout << "Front after pop: " << lq.front() << endl;
return 0;
}
/*
================================================================================
SUMMARY
================================================================================
┌────────────────────┬───────────────┬─────────────────────────────────────────┐
│ Type │ Operations │ Use Case │
├────────────────────┼───────────────┼─────────────────────────────────────────┤
│ Simple Queue │ FIFO │ BFS, task scheduling │
│ Circular Queue │ FIFO (wrap) │ Fixed-size buffer, round-robin │
│ Deque │ Both ends │ Sliding window max, palindrome check │
│ Priority Queue │ By priority │ Dijkstra, K largest, merge K lists │
└────────────────────┴───────────────┴─────────────────────────────────────────┘
CIRCULAR QUEUE INDEX FORMULAS:
- Next index: (i + 1) % capacity
- Previous index: (i - 1 + capacity) % capacity
================================================================================
*/