Table of Contents
Optimal replacement algorithm
First in, first out (FIFO) page replacement algorithm
Least recently used (LRU) replacement algorithm
Home Web Front-end HTML Tutorial Page replacement algorithm_html/css_WEB-ITnose

Page replacement algorithm_html/css_WEB-ITnose

Jun 24, 2016 pm 12:04 PM
algorithm page

Optimal replacement algorithm


The optimal replacement algorithm is an idealized algorithm that has the best performance, but in reality It's not possible (yet).


The optimal replacement algorithm is a theoretical algorithm proposed by Belady in 1966. The pages it selects for elimination will never be used in the future, and may be pages that will no longer be accessed in the longest (future) time. Using the best replacement algorithm can usually guarantee the lowest page fault rate. However, since people currently cannot predict which page among the several pages of a process's memory will no longer be accessed for the longest time in the future, this algorithm cannot be implemented, but can use this algorithm to evaluate Other algorithms. Examples are given below.


Assume that the system allocates three physical blocks to a process, and consider the following page number reference string:
7, 0, 1, 2 , 0, 3, 0, 4, 2, 3, 0, 3, 2, 1, 2, 0, 1, 7, 0, 1


When the process is running, first change 7, 0 , 1 three pages are loaded into memory. Later, when the process wants to access page 2, will generate a page fault interrupt . At this time, the OS will eliminate selected page 7 based on the optimal replacement algorithm. This is because page 0 will be the 5th page visited, page 1 will be the 14th page visited, and page 7 will only need to be loaded on the 18th page visit. The next time page 0 is accessed, there is no need to generate a page fault interrupt because it is already in memory. When the process accesses page 3, it will cause page 1 to be eliminated; because, among the three existing pages 1, 2, and 0, it will be the latest to be accessed in the future. Figure 4-26 shows the permutation graph when using the optimal permutation algorithm. As can be seen from the figure, 6 page replacements occurred using the optimal replacement algorithm.



First in, first out (FIFO) page replacement algorithm


This is the earliest replacement algorithm. This algorithm always eliminates the page that enters the memory first, that is, it selects the page that has resided in the memory for the longest time and eliminates it. This algorithm is not compatible with the actual running rules of the process, because in the process, some pages are frequently accessed, and the FIFO algorithm cannot guarantee that these pages will not be eliminated.

We still use the above example, but use the FIFO algorithm for page replacement (as shown below). When the process accesses page 2 for the first time, page 7 will be swapped out because it is the first to be transferred into memory; when it accesses page 3 for the first time, page 0 will be swapped out because it is in Among the three existing pages 2, 0, and 1, it is the oldest page. As can be seen from Figure 4-27, when using the FIFO algorithm, 12 page replacements are performed, which is exactly twice as many as the optimal replacement algorithm.

Note: When 3 is replaced into the memory for the first time, it is replaced by 0 instead of 1 (although 0 has just been accessed before 3, the 0 in the memory is still Memory pages arriving earlier than 1)






Least recently used (LRU) replacement algorithm



The most recently unused (LRU) page replacement algorithm makes decisions based on the usage of the page after it is transferred into the memory. The LRU replacement algorithm selects the most recently unused pages and eliminates them. This algorithm gives each page a visit field, which is used to record the time t that has elapsed since a page was last visited. When a page needs to be eliminated, the existing page is selected The page with the largest t value, that is, the page that has not been used for the longest time, will be eliminated.

The result of page replacement using the LRU algorithm in the above example is shown in the figure. When the process accesses page 2 for the first time, page 7 is replaced because it has not been accessed for the longest time. When the process accesses page 3 for the first time, page 1 becomes the most recently unused page, so it is swapped out. The optimal replacement algorithm is based on the "backward-looking" perspective, that is, it is based on the future usage of each page; while the LRU algorithm is "forward-looking", that is, based on the previous usage of each page. There is no necessary connection between the past and future direction of the page.













This article was collected and modified by Cout_Sev

From "Computer Operating System (Third Edition)" (Xidian University Press),

Please indicate the source when reprinting.

Thank you!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to copy a page in Word How to copy a page in Word Feb 20, 2024 am 10:09 AM

Want to copy a page in Microsoft Word and keep the formatting intact? This is a smart idea because duplicating pages in Word can be a useful time-saving technique when you want to create multiple copies of a specific document layout or format. This guide will walk you through the step-by-step process of copying pages in Word, whether you are creating a template or copying a specific page in a document. These simple instructions are designed to help you easily recreate your page without having to start from scratch. Why copy pages in Microsoft Word? There are several reasons why copying pages in Word is very beneficial: When you have a document with a specific layout or format that you want to copy. Unlike recreating the entire page from scratch

CLIP-BEVFormer: Explicitly supervise the BEVFormer structure to improve long-tail detection performance CLIP-BEVFormer: Explicitly supervise the BEVFormer structure to improve long-tail detection performance Mar 26, 2024 pm 12:41 PM

Written above & the author’s personal understanding: At present, in the entire autonomous driving system, the perception module plays a vital role. The autonomous vehicle driving on the road can only obtain accurate perception results through the perception module. The downstream regulation and control module in the autonomous driving system makes timely and correct judgments and behavioral decisions. Currently, cars with autonomous driving functions are usually equipped with a variety of data information sensors including surround-view camera sensors, lidar sensors, and millimeter-wave radar sensors to collect information in different modalities to achieve accurate perception tasks. The BEV perception algorithm based on pure vision is favored by the industry because of its low hardware cost and easy deployment, and its output results can be easily applied to various downstream tasks.

Implementing Machine Learning Algorithms in C++: Common Challenges and Solutions Implementing Machine Learning Algorithms in C++: Common Challenges and Solutions Jun 03, 2024 pm 01:25 PM

Common challenges faced by machine learning algorithms in C++ include memory management, multi-threading, performance optimization, and maintainability. Solutions include using smart pointers, modern threading libraries, SIMD instructions and third-party libraries, as well as following coding style guidelines and using automation tools. Practical cases show how to use the Eigen library to implement linear regression algorithms, effectively manage memory and use high-performance matrix operations.

Explore the underlying principles and algorithm selection of the C++sort function Explore the underlying principles and algorithm selection of the C++sort function Apr 02, 2024 pm 05:36 PM

The bottom layer of the C++sort function uses merge sort, its complexity is O(nlogn), and provides different sorting algorithm choices, including quick sort, heap sort and stable sort.

How to deal with the problem that Laravel page cannot display CSS correctly How to deal with the problem that Laravel page cannot display CSS correctly Mar 10, 2024 am 11:33 AM

"Methods to handle Laravel pages that cannot display CSS correctly, need specific code examples" When using the Laravel framework to develop web applications, sometimes you will encounter the problem that the page cannot display CSS styles correctly, which may cause the page to render abnormal styles. Affect user experience. This article will introduce some methods to deal with the failure of Laravel pages to display CSS correctly, and provide specific code examples to help developers solve this common problem. 1. Check the file path. First check the path of the CSS file.

How to implement page jump in 3 seconds: PHP Programming Guide How to implement page jump in 3 seconds: PHP Programming Guide Mar 25, 2024 am 10:42 AM

Title: Implementation method of page jump in 3 seconds: PHP Programming Guide In web development, page jump is a common operation. Generally, we use meta tags in HTML or JavaScript methods to jump to pages. However, in some specific cases, we need to perform page jumps on the server side. This article will introduce how to use PHP programming to implement a function that automatically jumps to a specified page within 3 seconds, and will also give specific code examples. The basic principle of page jump using PHP. PHP is a kind of

Improved detection algorithm: for target detection in high-resolution optical remote sensing images Improved detection algorithm: for target detection in high-resolution optical remote sensing images Jun 06, 2024 pm 12:33 PM

01 Outlook Summary Currently, it is difficult to achieve an appropriate balance between detection efficiency and detection results. We have developed an enhanced YOLOv5 algorithm for target detection in high-resolution optical remote sensing images, using multi-layer feature pyramids, multi-detection head strategies and hybrid attention modules to improve the effect of the target detection network in optical remote sensing images. According to the SIMD data set, the mAP of the new algorithm is 2.2% better than YOLOv5 and 8.48% better than YOLOX, achieving a better balance between detection results and speed. 02 Background & Motivation With the rapid development of remote sensing technology, high-resolution optical remote sensing images have been used to describe many objects on the earth’s surface, including aircraft, cars, buildings, etc. Object detection in the interpretation of remote sensing images

How to quickly refresh a web page? How to quickly refresh a web page? Feb 18, 2024 pm 01:14 PM

Page refresh is very common in our daily network use. When we visit a web page, we sometimes encounter some problems, such as the web page not loading or displaying abnormally, etc. At this time, we usually choose to refresh the page to solve the problem, so how to refresh the page quickly? Let’s discuss the shortcut keys for page refresh. The page refresh shortcut key is a method to quickly refresh the current web page through keyboard operations. In different operating systems and browsers, the shortcut keys for page refresh may be different. Below we use the common W

See all articles