About 432,000 results
Open links in new tab
  1. Program for Least Recently Used (LRU) Page Replacement algorithm

    Jul 23, 2025 · Using a deque data structure, the program implements the page replacement algorithm. A predetermined number of pages are kept in memory by the algorithm, and they …

  2. Page Replacement Algorithms: FIFO, LRU, Optimal – Complete …

    Aug 27, 2025 · The LRU algorithm is based on the principle of temporal locality – recently accessed pages are more likely to be accessed again soon. It replaces the page that has been …

  3. Page replacement algorithm - Wikipedia

    The least recently used (LRU) page replacement algorithm, though similar in name to NRU, differs in the fact that LRU keeps track of page usage over a short period of time, while NRU just …

  4. LRU Page Replacement Algorithm - Scaler Topics

    Apr 20, 2024 · LRU stands for Least Recently Used. As the name suggests, this algorithm is based on the strategy that whenever a page fault occurs, the least recently used page will be …

  5. Cache Algorithms: FIFO vs. LRU vs. LFU – A Comprehensive Guide

    The Least Recently Used (LRU) algorithm is a more sophisticated cache replacement policy that takes into account the recency of access to items in the cache. It operates on the principle that …

  6. Least Recently Used (LRU) Algorithm - PrepInsta

    The Least Recently Used (LRU) algorithm is a powerful page replacement strategy that optimizes memory management in operating systems. By evicting the least recently used page, it …

  7. LRU (Least Recently Used) Algorithm – Overview and …

    Learn how the Least Recently Used (LRU) caching algorithm improves memory management with efficient page replacement. Includes concepts, uses, and code examples.

  8. LRU Cache - Complete Tutorial - GeeksforGeeks

    Jul 23, 2025 · The Least Recently Used (LRU) is one of those algorithms. As the name suggests when the cache memory is full, LRU picks the data that is least recently used and removes it …

  9. How to Implement LRU Cache in Java - Baeldung

    Apr 17, 2025 · The Least Recently Used (LRU) cache is a cache eviction algorithm that organizes elements in order of use. In LRU, as the name suggests, the element that hasn’t been used for …

  10. LRU Cache Implementation - EnjoyAlgorithms

    The Least Recently Used (LRU) cache is a popular caching strategy that discards the least recently used items first to make room for new elements when the cache is full.