Custom memory allocator in C++ built from scratch using mmap. Allocates a 1MB memory pool upfront and carves blocks from it to keep all allocations contiguous. Implements malloc, free, block reuse via free list, and coalescing of adjacent free blocks without any standard library allocation functions. -
View it on GitHub