Describe an algorithm for memory allocation (similar to malloc) for a system with limited memory. Allocation size is always constant (X number of bytes).
Resposta da entrevista
Sigiloso
22 de jun. de 2023
Using a linked list of allocations (nodes are free blocks).