Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须使用非常大的浮点数组(大约 2000^3),此外,有时我必须随机或通过其他非顺序方式路由数组元素。
我使用 stxxl 库并将我的数据存储在 stxxl::vector 容器中。该库将数据存储在磁盘上,并使用 RAM 中的一小部分数据进行操作。由于对元素的随机访问,有必要经常从磁盘读取/写入内存块,这会减慢程序的工作速度。
有没有人知道通过元素随机路由大数据的操作方式?stxxl可以吗?
我建议您探索流包和矩阵容器。