Skip to content

Latest commit

 

History

History
21 lines (11 loc) · 629 Bytes

README.md

File metadata and controls

21 lines (11 loc) · 629 Bytes

Memory Allocation

A C++ implementation of memory allocation strategies: first fit, next fit, best fit, and worst fit.

Input includes the number and size of each partition, as well as the number and memory requirements of the processes. The output displays the memory allocation result for each allocation strategy.

First Fit

first_fit_img

Next Fit

next_fit_img

Best Fit

best_fit_img

Worst Fit

worst_fit_img