This is a repository for Process Scheduling Program, it contains algorithms about process scheduling such as
- First Come First Serve (FCFS)
- Shortest Job First (SJF)
- Non-Preemtive Priority (NPP)
- Shortest Remaining Time First (SRTF)
- Preemtive Priority (PP)
- Round Robin (RR)
These algorithms are written in C++ and uses std::vector and std::pair to manipulate the inputs and arranged them completely based in the given algorithm. The testing of the program was helped based on the process scheduler solver -> https://boonsuen.com/process-scheduling-solver the answers generated by the program is compared to the answers on the said solver based on the same inputs.