-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathLRU_Cache.cpp
More file actions
150 lines (138 loc) · 3.59 KB
/
LRU_Cache.cpp
File metadata and controls
150 lines (138 loc) · 3.59 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
/*
* C++ Program to Implement LRU Cache
*/
#include <iostream>
#include <cstdlib>
#include <cmath>
using namespace std;
// A Queue Node (Queue is implemented using Doubly Linked List)
typedef struct QNode
{
QNode *prev, *next;
unsigned pageNumber;
} QNode;
// A Queue (A FIFO collection of Queue Nodes)
typedef struct Queue
{
unsigned count;
unsigned numberOfFrames;
QNode *front, *rear;
} Queue;
// A hash (Collection of pointers to Queue Nodes)
typedef struct Hash
{
int capacity;
QNode **array;
} Hash;
// A utility function to create a new Queue Node.
QNode* newQNode(unsigned pageNumber)
{
QNode* temp = new QNode;
temp->pageNumber = pageNumber;
temp->prev = temp->next = NULL;
return temp;
}
// A utility function to create an empty Queue.
Queue* createQueue(int numberOfFrames)
{
Queue* queue = new Queue;
queue->count = 0;
queue->front = queue->rear = NULL;
queue->numberOfFrames = numberOfFrames;
return queue;
}
// A utility function to create an empty Hash of given capacity
Hash* createHash(int capacity)
{
Hash* hash = new Hash;
hash->capacity = capacity;
hash->array = new QNode* [hash->capacity];
int i;
for(i = 0; i < hash->capacity; ++i)
hash->array[i] = NULL;
return hash;
}
// A function to check if there is slot available in memory
int AreAllFramesFull(Queue* queue)
{
return queue->count == queue->numberOfFrames;
}
// A utility function to check if queue is empty
int isQueueEmpty( Queue* queue )
{
return queue->rear == NULL;
}
// A utility function to delete a frame from queue
void deQueue( Queue* queue )
{
if (isQueueEmpty(queue))
return;
if (queue->front == queue->rear)
queue->front = NULL;
QNode* temp = queue->rear;
queue->rear = queue->rear->prev;
if (queue->rear)
queue->rear->next = NULL;
free(temp);
queue->count--;
}
// A function to add a page with given 'pageNumber' to both queue and hash
void Enqueue(Queue* queue, Hash* hash, unsigned pageNumber)
{
if (AreAllFramesFull(queue))
{
hash->array[queue->rear->pageNumber] = NULL;
deQueue(queue);
}
QNode* temp = newQNode(pageNumber);
temp->next = queue->front;
if (isQueueEmpty(queue))
queue->rear = queue->front = temp;
else
{
queue->front->prev = temp;
queue->front = temp;
}
hash->array[pageNumber] = temp;
queue->count++;
}
// This function is called when a page with given 'pageNumber' is referenced
// from cache (or memory).
void ReferencePage(Queue* queue, Hash* hash, unsigned pageNumber)
{
QNode* reqPage = hash->array[pageNumber];
if (reqPage == NULL)
Enqueue(queue, hash, pageNumber);
else if (reqPage != queue->front)
{
reqPage->prev->next = reqPage->next;
if (reqPage->next)
reqPage->next->prev = reqPage->prev;
if (reqPage == queue->rear)
{
queue->rear = reqPage->prev;
queue->rear->next = NULL;
}
reqPage->next = queue->front;
reqPage->prev = NULL;
reqPage->next->prev = reqPage;
queue->front = reqPage;
}
}
// Main
int main()
{
Queue* q = createQueue(4);
Hash* hash = createHash( 10 );
ReferencePage(q, hash, 1);
ReferencePage(q, hash, 2);
ReferencePage(q, hash, 3);
ReferencePage(q, hash, 1);
ReferencePage(q, hash, 4);
ReferencePage(q, hash, 5);
cout<<q->front->pageNumber<<" ";
cout<<q->front->next->pageNumber<<" ";
cout<<q->front->next->next->pageNumber<<" ";
cout<<q->front->next->next->next->pageNumber<<" ";
return 0;
}