This repository has been archived by the owner on Feb 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lru.h
127 lines (110 loc) · 1.61 KB
/
lru.h
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
//linked list class for lru
#pragma once
#pragma once
#include<iostream>
using namespace std;
template<class T1>
class node
{
private:
T1 data;
public:
node<T1>* next;
node(T1 data)
{
this->data = data;
next = NULL;
}
node()
{
this->data = '\0';
next = NULL;
}
void setdata(T1 d) {
data = d;
}
T1 getData()
{
return data;
}
};
template<class T1>
class Queue
{
public:
node<T1>* rear;
node<T1>* front;
int size=0;
Queue()
{
rear = front = NULL;
size = 0;
}
bool isEmpty()
{
if (front == NULL)
return true;
else
return false;
}
void enqueue(T1 data)
{
size++;
node<T1>* temp = new node<T1>(data);
if (isEmpty())
{
front = rear = temp;
}
else
rear->next = temp;
rear = temp;
}
void dequeue()
{
T1 val;
node<T1>* temp = new node<T1>();
if (!isEmpty())
{
size--;
val = front->getData();
temp = front;
front = front->next;
delete temp;
}
//return val;
}
int getsize()
{
return size;
}
T1 isfront()
{
return front->getData();
}
//void print() {
// node<T1>* temp;
// temp = front;
// while (temp)
// {
// cout << "The data of Queue member is : " << temp->getData() << endl;
// //cout << "The id of Queue member is : " << temp->getID() << endl;
// temp = temp->next;
// }
//}
bool contains(T1 x)
{
bool find = false;
node<T1>* temp;
temp = front;
while (temp)
{
if (temp->getData() == x)
{
find = true;
break;
}
temp = temp->next;
}
return find;
}
};