I\'m interested in the type of memory management a game like GTA IV might use given that it needs to create and delete lots of objects very quickly. How do the avoid fragmenting
They use things like memory pooling, specialized allocators, and specialized container classes.