美文网首页
stxxl之极大数组 stxxl::vector

stxxl之极大数组 stxxl::vector

作者: Brent姜 | 来源:发表于2017-10-11 11:23 被阅读43次

    使用std::vector时,受到系统内存地址空间大小、计算机内存大小、程序堆栈大小限制,其capacity有限。可以使用

    size_type std::vector::max_size() const noexcept;
    

    得到理论容量限制(但是实际使用仍然受计算机内存大小限制)。

    使用stxxl::vector可以支持超大容量数组,它的方式是利用磁盘进行空间分配,并提供了内存与磁盘的数据呼唤操作,类似于CPU Cache的“page”访问机制。

    相关文章

      网友评论

          本文标题:stxxl之极大数组 stxxl::vector

          本文链接:https://www.haomeiwen.com/subject/zigiyxtx.html