码迷,mamicode.com
首页 > 编程语言 > 详细

C++之vector

时间:2014-10-09 00:26:07      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   os   使用   ar   for   sp   div   

1、简介

Vector属于顺序容器,代表可改变大小的数组。

像数组一样,vector使用连续存储,意味着它们的元素可以使用偏移来访问。不同于数组,它们的规模可以动态改变。

Vectors are sequence containers representing arrays that can change in size.

Just like arrays, vectors use contiguous storage locations for their elements, which means that their elements can also be accessed using offsets on regular pointers to its elements, and just as efficiently as in arrays. But unlike arrays, their size can change dynamically, with their storage being handled automatically by the container.

Internally, vectors use a dynamically allocated array to store their elements. This array may need to be reallocated in order to grow in size when new elements are inserted, which implies allocating a new array and moving all elements to it. This is a relatively expensive task in terms of processing time, and thus, vectors do not reallocate each time an element is added to the container.

Instead, vector containers may allocate some extra storage to accommodate for possible growth, and thus the container may have an actual capacity greater than the storage strictly needed to contain its elements (i.e., its size). Libraries can implement different strategies for growth to balance between memory usage and reallocations, but in any case, reallocations should only happen at logarithmically growing intervals of size so that the insertion of individual elements at the end of the vector can be provided with amortized constant time complexity (see push_back).

Therefore, compared to arrays, vectors consume more memory in exchange for the ability to manage storage and grow dynamically in an efficient way.

Compared to the other dynamic sequence containers (dequeslists and forward_lists), vectors are very efficient accessing its elements (just like arrays) and relatively efficient adding or removing elements from its end. For operations that involve inserting or removing elements at positions other than the end, they perform worse than the others, and have less consistent iterators and references than lists and forward_lists.

2、用法

(1)遍历时删除

vector<string> strArray;
    strArray.push_back("a");
    strArray.push_back("b");
    strArray.push_back("c");
    strArray.push_back("d");                                                                                                                 
    for (vector<string>::iterator it = strArray.begin(); it != strArray.end();)
    {
        if(*it=="b")
        {
            it = strArray.erase(it);
        }
        else
        {
            std::cout << ‘ ‘ << *it;
            it++;
        }
    }

  

 

C++之vector

标签:blog   http   io   os   使用   ar   for   sp   div   

原文地址:http://www.cnblogs.com/erli11/p/4011380.html

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