https://github.com/sandhish/page-replacement-algorithms
Simulator of Page Replacement Algorithms like FIFO, LRU, Optimal
https://github.com/sandhish/page-replacement-algorithms
css fifo html javascript lru optimal page-replacement-algorithm
Last synced: 3 months ago
JSON representation
Simulator of Page Replacement Algorithms like FIFO, LRU, Optimal
- Host: GitHub
- URL: https://github.com/sandhish/page-replacement-algorithms
- Owner: Sandhish
- Created: 2024-06-15T04:09:46.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-08-12T15:22:26.000Z (10 months ago)
- Last Synced: 2024-11-29T21:11:36.484Z (6 months ago)
- Topics: css, fifo, html, javascript, lru, optimal, page-replacement-algorithm
- Language: JavaScript
- Homepage: https://page-replacement-algorithms-3.vercel.app/
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Page Replacement Algorithms Simulator
This project is a web-based simulator for page replacement algorithms implemented using HTML, CSS, and JavaScript. The simulator demonstrates the workings of three popular page replacement algorithms: Least Recently Used (LRU), First-In-First-Out (FIFO), and Optimal.
## Features
- **LRU (Least Recently Used)**: Simulates the LRU page replacement algorithm.
- **FIFO (First-In-First-Out)**: Simulates the FIFO page replacement algorithm.
- **Optimal**: Simulates the Optimal page replacement algorithm.
- **Interactive UI**: Users can interact with the simulation to see how different algorithms handle page replacement.## Technologies Used
- **HTML**: For structuring the web pages.
- **CSS**: For styling the web pages.
- **JavaScript**: For implementing the simulation logic and interactive elements.