-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLRU.html
More file actions
73 lines (50 loc) · 2.96 KB
/
LRU.html
File metadata and controls
73 lines (50 loc) · 2.96 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
<!doctype html>
<html>
<head>
<title>Page Replacement Algorithms</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<link href="pagereplacementpage.css" rel="stylesheet" type="text/css" />
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js" integrity="sha384-smHYKdLADwkXOn1EmN1qk/HfnUcbVRZyYmZ4qpPea6sjB/pTJ0euyQp0Mk8ck+5T" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="icon-bar">
<a class="active" href="mainpage1.html"><i class="fa fa-home"></i></a>
<a href="homepage2.html">Create Charts</a>
<a href="jobschedulingpage.html">Job Scheduling Algorithms</a>
<a href="pagereplacementpage.html">Page Replacement Algorithms</a>
<a href="aboutuspage.html">About</a>
</div>
<div class="sidenav">
<a class="active" href="mainpage1.html"><i class="fa fa-home"></i></a>
<a href="pagereplacementpage.html">Optimal Page Repalcement</a>
<a href="NRU.html">NRU Page Replacement</a>
<a href="FIFO.html">FIFO Page Replacement</a>
<a href="SC.html">Second Chance Page Replacement</a>
<a href="LRU.html">LRU Page Replacement</a>
</div>
<div class="main">
<br>
<h4>Least Recently Used Page Replacement</h4>
In this algorithm page will be replaced which is least recently used.<br>
Let say the page reference string 7 0 1 2 0 3 0 4 2 3 0 3 2 . Initially we have 4 page slots empty.<br>
<ul>
<li>Initially all slots are empty, so when 7 0 1 2 are allocated to the empty slots = <b>4 Page faults</b></li>
<li>0 is already their so = <b>0 Page fault</b></li>
<li>when 3 came it will take the place of 7 because it is least recently used = <b>1 Page fault</b></li>
<li>0 is already in memory so = <b>0 Page fault</b></li>
<li>4 will takes place of 1 = <b>1 Page fault</b></li>
<li>Now for the further page reference string = <b>0 Page fault</b> because they are already available in the memory.</b></li>
</ul>
Let us have a reference string: a, b, c, d, c, a, d, b, e, b, a, b, c, d and the size of the frame be 4.<br>
<br>
<img class="LRU" src="LRU.png"><br>
There are 7 page faults using LRU algorithm.<br><br>
<br>
</div>
</body>
</html>