Good C++ array class for dealing with large arrays of data in a fast and memory efficient way?

后端 未结 4 810
既然无缘
既然无缘 2020-12-06 03:16

Following on from a previous question relating to heap usage restrictions, I\'m looking for a good standard C++ class for dealing with big arrays of data in a way that is bo

4条回答
  •  太阳男子
    2020-12-06 03:41

    From the point of view of your program you always have 2GB available on startup, no matter what else is going on in the system. I don't believe Windows provides a way to detect if you have memory being paged out to disk or not. As far as you data structures go, it sounds like you're describing something similar to how a deque is implemented in the STL.

提交回复
热议问题