标签: c++ memory-management boost stl
我需要使用map,密钥为uint32_t,值为Meshes。我希望网格布置在重要的记忆中以提高性能,因为它们会经常连续访问。
map
uint32_t
Meshes
我想知道哪些内存分配器库可用,它们提供以下内容;
我看过提升,但它似乎没有提供我正在寻找的东西。
(我没有使用vector的原因是容器会增长和收缩很多,我更喜欢uint32_t作为mesh的标识符
vector
mesh
由于
答案 0 :(得分:-1)
的Deque
http://www.cplusplus.com/reference/deque/deque/
没什么好说的。去读一下它。