MemPooling #메모리 풀링 클래스 Efficient C++(Dov Bulka , David Mayhew)에서 많은 도움은 얻음 나름대로 좋은 성능을 냄 /** * MemPool.h * * Memory Pooling Class * * Copyright (c) 2004 by cdecl (byung-kyu kim) * */ #ifndef __MEM_POOL_H__BY__CDECL #define __MEM_POOL_H__BY__CDECL namespace GLASS { // MemPool Class class MemPool { public: typedef unsigned int size_type; enum { DEFAULT_CHUNK_SIZE = 32 }; struct MemNode { MemNode *..