-
Notifications
You must be signed in to change notification settings - Fork 0
/
QUEUESUsingArrays.cpp
60 lines (52 loc) · 1.02 KB
/
QUEUESUsingArrays.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
// #include<iostream>
// #include<stack>
// #include<algorithm>
// #include<vector>
// #include<bitset>
// #include<math.h>
// #include<cmath>
// #include<numeric>
// #include<string>
// #include<stdlib.h>
// #include<queue>
// #include<map>
// #include<unordered_map>
// #include<set>
// #include<list>
// #include<unordered_set>
// #include<deque>
// #include<random>
// #include<chrono>
// #include<stack>
// #include<cctype>
// #include<cstring>
// #include<string>
// #include<sstream>
// #include<fstream>
#include<bits/stdc++.h>
using namespace std;
class Node{
public:
int data;
Node* next;
Node(int val){
this->data = data;
this->next = NULL;
}
};
class Queue{
Node* head;
Node*tail;
public:
Queue() {
this->head = NULL;
this->tail = NULL;
}
void enqueue(int data) {
Node* new_node = new Node(data);
if(this->head == NULL) {
// If LL is empty..........
this->head = this->tail = new_node;
}
}
};