Operating Systems/Memory Management
From Wikiversity
Contents |
[edit] Memory Management Algorithms
There are three memory management algorithms.
[edit] First-Fit
A chunk of data is inserted to the first available block of memory.
[edit] Best-Fit
A chunk of data is inserted to the smallest available block of memory. Such smallest possible blok of memory is big enough to fit in the chunk of data.wac
[edit] Worst-Fit
This is in total opposite as the the Best-Fit algorithm. A chunk of data inserted into the largest available block of memory.
[edit] Memory Paging
Under construction.

