Database
aa199.txt
Associated article: Algorithm Alley
Tags: Database
Publishing source code accompanying the article by Sasha Gontmakher and Ilan Horn in which they discuss common patterns of memory usage, and uses that to develop a practical memory manager. Also see AA199.ZIP.
Algorithm Alley by Sasha Gontmakher and Ilan Horn Listing One // smartnew.cpp #include <assert.h> #include <stddef.h> #include <stdlib.h> // Policy configuration const size_t granularity_bits = 2; const size_t granularity = 1 << ...


