码迷,mamicode.com
首页 > 其他好文 > 详细

std::vector扩容机制,.按1.5倍取整扩容,如下。

时间:2015-09-15 10:42:52      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:

#include <iostream>
#include <vector>

using namespace std;

/*
 * 结论:
 * capacity = 1, newcapacity = 2;
 * capacity > 1, newcapacity = (int)(capacity * 1.5);
 */
int main(){
    int cap = -1;
    vector<int> ints;
    for(int i = 0;i<1000000;i++){
        ints.push_back(i);
        if( cap != ints.capacity()){
            cap = ints.capacity();
            cout << " ints.size() = " << ints.size() << "  ints.capacity() = " << cap << endl;
        }
    }
    cout << (int)(3*1.5) << endl;
    system("pause");
    return 0;
}

 

std::vector扩容机制,.按1.5倍取整扩容,如下。

标签:

原文地址:http://www.cnblogs.com/cycxtz/p/4809254.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!