Paging Algorithm Templates (Liver)
==================================

This folder contains Python implementations for common Memory Management paging algorithms.

Files:
1. fifo.py    - First-In, First-Out
2. lru.py     - Least Recently Used
3. optimal.py - Optimal Page Replacement
4. clock.py   - Clock (Second Chance)

How to use:
Run the python files directly to see a demo with sample data.
Modify the 'pages' list and 'capacity' in the '__main__' block to test your own inputs.
