資源描述:
《C++-STL之vector容器的用法.doc》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在教育資源-天天文庫(kù)。
1、C++STL之vector容器的使用方法1成員類型12vector的構(gòu)造函數(shù)22.1右值和引用32.2初始化列表構(gòu)造函數(shù)32.3賦值函數(shù)53容量相關(guān)的函數(shù)53.1size函數(shù)63.2max_size函數(shù)63.3resize函數(shù)63.4capacity函數(shù)73.5reverse函數(shù)73.6empty函數(shù)83.7shrink_to_fit函數(shù)84vector元素獲取函數(shù)84.1[]操作符函數(shù)94.2at函數(shù)94.3front函數(shù)94.4back函數(shù)94.5data函數(shù)C++1195vector中修改元素
2、的函數(shù)95.1assign函數(shù)95.2push_back函數(shù)105.3pop_back函數(shù)105.4insert函數(shù)105.5erase函數(shù)115.6swap函數(shù)125.7emplace函數(shù)(C++11)125.8emplace_back函數(shù)136關(guān)于分配器的函數(shù)137關(guān)于迭代器的函數(shù)14Vector本質(zhì)上也是數(shù)組,它和array的區(qū)別是array的長(zhǎng)度大小固定,而vector是容量可以動(dòng)態(tài)變化的數(shù)組。當(dāng)有新元素插入時(shí),需要重新非配內(nèi)存,這會(huì)造成時(shí)間上昂貴的開銷,但是實(shí)際上,vector實(shí)際上被分配
3、一些額外的存貯空間以應(yīng)對(duì)元素個(gè)數(shù)增長(zhǎng),因此vector實(shí)際容量的大小比它應(yīng)該包含元素所需的內(nèi)存大些。庫(kù)函數(shù)都用相對(duì)應(yīng)的策略來(lái)應(yīng)對(duì)時(shí)間上的消耗以及空間的分配,當(dāng)元素在末尾插入時(shí),由于額外存儲(chǔ)空間的原因,消耗的時(shí)間是常量復(fù)雜度,只有當(dāng)插入的元素城指數(shù)增長(zhǎng)時(shí),才需要重新分配內(nèi)存。相對(duì)array來(lái)講,由于vector增加了動(dòng)態(tài)分配內(nèi)存,所以vector在需要更多的內(nèi)存。相對(duì)list,deque,forward_list,vector由于是順序存儲(chǔ),所以其訪問速度比這些動(dòng)態(tài)分配內(nèi)存的容器快,在末尾添加和刪除元
4、素也相對(duì)較快,1成員類型allocator_typeAtypethatrepresentsthe?allocator?classforthe14vectorobject.const_iteratorAtypethatprovidesarandom-accessiteratorthatcanreadaconst?elementinavector.const_pointerAtypethatprovidesapointertoa?const?elementinavector.const_referenc
5、eAtypethatprovidesareferencetoa?const?elementstoredinavectorforreadingandperforming?const?operations.const_reverse_iteratorAtypethatprovidesarandom-accessiteratorthatcanreadanyconst?elementinthevector.difference_typeAtypethatprovidesthedifferencebetwee
6、ntheaddressesoftwoelementsinavector.iteratorAtypethatprovidesarandom-accessiteratorthatcanreadormodifyanyelementinavector.pointerAtypethatprovidesapointertoanelementinavector.referenceAtypethatprovidesareferencetoanelementstoredinavector.reverse_iterat
7、orAtypethatprovidesarandom-accessiteratorthatcanreadormodifyanyelementinareversedvector.size_typeAtypethatcountsthenumberofelementsinavector.value_typeAtypethatrepresentsthedatatypestoredinavector.這些東西所有的容器都大同小異,在前面已經(jīng)介紹過了。2vector的構(gòu)造函數(shù)Vector的構(gòu)造函數(shù)分兩個(gè)版本種類
8、的98版本的default(1)explicitvector(constallocator_type&alloc=allocator_type());fill(2)explicitvector(size_typen,constvalue_type&val=value_type(),constallocator_type&alloc=allocator_type());range(3)templatevector(InputIte