Requisito previo: Algoritmos de reemplazo de página
En los sistemas operativos, cada vez que se hace referencia a una nueva página y no está presente en la memoria, se produce un error de página y el sistema operativo reemplaza una de las páginas existentes con una página nueva que se necesita. Diferentes algoritmos de reemplazo de página sugieren diferentes formas de decidir qué página reemplazar. El objetivo de todos los algoritmos es reducir el número de errores de página. En este algoritmo, el sistema operativo reemplaza la página que no se utilizará durante el período de tiempo más largo en el futuro. Ejemplos:
CPP
// CPP program to demonstrate optimal page // replacement algorithm. #include <bits/stdc++.h> using namespace std; // Function to check whether a page exists // in a frame or not bool search(int key, vector<int>& fr) { for (int i = 0; i < fr.size(); i++) if (fr[i] == key) return true; return false; } // Function to find the frame that will not be used // recently in future after given index in pg[0..pn-1] int predict(int pg[], vector<int>& fr, int pn, int index) { // Store the index of pages which are going // to be used recently in future int res = -1, farthest = index; for (int i = 0; i < fr.size(); i++) { int j; for (j = index; j < pn; j++) { if (fr[i] == pg[j]) { if (j > farthest) { farthest = j; res = i; } break; } } // If a page is never referenced in future, // return it. if (j == pn) return i; } // If all of the frames were not in future, // return any of them, we return 0. Otherwise // we return res. return (res == -1) ? 0 : res; } void optimalPage(int pg[], int pn, int fn) { // Create an array for given number of // frames and initialize it as empty. vector<int> fr; // Traverse through page reference array // and check for miss and hit. int hit = 0; for (int i = 0; i < pn; i++) { // Page found in a frame : HIT if (search(pg[i], fr)) { hit++; continue; } // Page not found in a frame : MISS // If there is space available in frames. if (fr.size() < fn) fr.push_back(pg[i]); // Find the page to be replaced. else { int j = predict(pg, fr, pn, i + 1); fr[j] = pg[i]; } } cout << "No. of hits = " << hit << endl; cout << "No. of misses = " << pn - hit << endl; } // Driver Function int main() { int pg[] = { 7, 0, 1, 2, 0, 3, 0, 4, 2, 3, 0, 3, 2 }; int pn = sizeof(pg) / sizeof(pg[0]); int fn = 4; optimalPage(pg, pn, fn); return 0; } // This code is contributed by Karandeep Singh
Java
// Java program to demonstrate optimal page // replacement algorithm. import java.io.*; import java.util.*; class GFG { // Function to check whether a page exists // in a frame or not static boolean search(int key, int[] fr) { for (int i = 0; i < fr.length; i++) if (fr[i] == key) return true; return false; } // Function to find the frame that will not be used // recently in future after given index in pg[0..pn-1] static int predict(int pg[], int[] fr, int pn, int index) { // Store the index of pages which are going // to be used recently in future int res = -1, farthest = index; for (int i = 0; i < fr.length; i++) { int j; for (j = index; j < pn; j++) { if (fr[i] == pg[j]) { if (j > farthest) { farthest = j; res = i; } break; } } // If a page is never referenced in future, // return it. if (j == pn) return i; } // If all of the frames were not in future, // return any of them, we return 0. Otherwise // we return res. return (res == -1) ? 0 : res; } static void optimalPage(int pg[], int pn, int fn) { // Create an array for given number of // frames and initialize it as empty. int[] fr = new int[fn]; // Traverse through page reference array // and check for miss and hit. int hit = 0; int index = 0; for (int i = 0; i < pn; i++) { // Page found in a frame : HIT if (search(pg[i], fr)) { hit++; continue; } // Page not found in a frame : MISS // If there is space available in frames. if (index < fn) fr[index++] = pg[i]; // Find the page to be replaced. else { int j = predict(pg, fr, pn, i + 1); fr[j] = pg[i]; } } System.out.println("No. of hits = " + hit); System.out.println("No. of misses = " + (pn - hit)); } // driver function public static void main(String[] args) { int pg[] = { 7, 0, 1, 2, 0, 3, 0, 4, 2, 3, 0, 3, 2 }; int pn = pg.length; int fn = 4; optimalPage(pg, pn, fn); } }
Publicación traducida automáticamente
Artículo escrito por rishabh_jain y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA