Memory Management

Are your C++ programs running slowly? Is it because you are creating millions of little objects? I have a memory allocation class which you can include in your code and target at specific classes to speed up new and delete (and save space) by a huge amount.

This class, instead of claiming small chunks of memory at a time, claims great big chunks and hands bits of them out as they are needed. For more information, see me.