Memory Allocation Algorithms Simulation

First Fit

Allocates the first block that is large enough for the process.

Best Fit

Allocates the smallest block that is large enough for the process.

Worst Fit

Allocates the largest available block to the process.