CPU Scheduling Templates (Brain)
==============================

This folder contains Python implementations for common CPU scheduling algorithms.

Files:
1. fcfs.py        - First-Come, First-Served
2. sjf.py         - Shortest Job First (Non-Preemptive)
3. priority.py    - Priority Scheduling (Non-Preemptive)
4. round_robin.py - Round Robin (Preemptive)

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