lru
Here are 34 public repositories matching this topic...
Minimal C++ LRU cache using a linked-list and a map
-
Updated
Jun 27, 2017 - C++
LRU Stands for Least Recently Used and LRU Cache help identify the least recently used items in a System.
-
Updated
Aug 23, 2021 - C++
It is required to simulate some of paging replacement algorithms. The required algorithms to be implemented are as follows: • First In First Out (FIFO) • Least Recently Used (LRU) • Clock
-
Updated
Dec 26, 2018 - C++
This C++-based program implements several of the most popular page replacement algorithms (Optimal, FIFO, LRU, Clock).
-
Updated
Mar 12, 2024 - C++
Page Replacement Algorithms manage memory efficiently in computer systems. FIFO (First In, First Out) replaces the oldest page, simple but inefficient. Optimal replaces the page that won't be used for the longest time, ideal but impractical. LRU (Least Recently Used) swaps out the least recently accessed page, balancing simplicity and effectiveness
-
Updated
May 25, 2024 - C++
Implementing several Page Replacement algorithms used in Operating Systems.
-
Updated
Dec 27, 2019 - C++
Replacement Policy implemented in linux. Assigned 5/12/2020, Due 12/12/2020
-
Updated
Jan 20, 2021 - C++
Page replacement simulator - Operating Systems Memory Virtualization project
-
Updated
Mar 11, 2022 - C++
Implement page replacement policies like LRU, NFU, FIFO , Aging, Random etc . And also compare their results.
-
Updated
Nov 11, 2023 - C++
-
Updated
Apr 25, 2018 - C++
Common engineering data structures and algorithms, such as linear,tree,linked list,graph,greedy,divide and conquer,dynamic programming, backtracking, depth search, breadth search and so on
-
Updated
Aug 19, 2024 - C++
Algorithms Studied During Operating System Course
-
Updated
Jun 29, 2022 - C++
Improve this page
Add a description, image, and links to the lru topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the lru topic, visit your repo's landing page and select "manage topics."