這篇文章主要介紹了C++中STL list詳解及簡單實例的相關資料,需要的朋友可以參考下
C++中STL list詳解
# 1、List: 內部實作是雙向鍊錶,可以有效率的進行插入刪除,但不能夠進行隨機存取
2.、範例程式:
#include "stdafx.h" #include <iostream> #include <list> #include <iterator> #include <algorithm> using namespace std; const int num[5] = {1,3,2,4,5}; bool status(const int & value) { return value>6?true:false; } int _tmain(int argc, _TCHAR* argv[]) { list<int> list1; copy(num,num+5,back_insert_iterator<list<int>>(list1)); copy(list1.begin(),list1.end(),ostream_iterator<int>(cout," ")); cout<<endl; list1.sort(greater<int>());//5 4 3 2 1 copy(list1.begin(),list1.end(),ostream_iterator<int>(cout," ")); cout<<endl; list<int>::iterator it = list1.begin(); while (it != list1.end()) { (*it) += 2; it++; } //7 6 5 4 3 list<int>::reverse_iterator re_it = list1.rbegin(); cout<<"从后向前输出: "; while (re_it != list1.rend()) { cout<<*re_it<<" "; re_it++; } cout<<endl; list1.reverse();// 3 4 5 6 7 list1.push_back(8);//3 4 5 6 7 8 list1.pop_front();//4 5 6 7 8 list1.remove(6);//4 5 7 8 list1.remove_if(status);// 4 5 list1.resize(4);// 4 5 0 0 list1.resize(6,1);// 4 5 0 0 1 1 list1.unique();//4 5 0 1 copy(list1.begin(),list1.end(),ostream_iterator<int>(cout," ")); cout<<endl; list1.clear(); cout<<"当前list1含有元素个数:"<<list1.size()<<endl; list1.push_back(7);//list1:7 list<int> list2(3,2);//2 2 2 list2.merge(list1,greater<int>());//list2: 7 2 2 2 list2.insert(++list2.begin(),3);//list2: 7 3 2 2 2 list2.swap(list1);//list1:7 3 2 2 2 list2:empty list1.erase(++list1.begin(),list1.end());// 7 copy(list1.begin(),list1.end(),ostream_iterator<int>(cout," ")); cout<<endl; system("pause"); }
執行結果圖片:
#3、List 方法
list成員 |
|
##說明 | |
建構子 | |
析構函數 | |
#賦值重載運算子 | |
已指派值 | |
傳回第一個元素的參考 | |
傳回最後一元素的引用 | |
#傳回第一個元素的iterator | |
傳回最後一個元素的下一位置的iterator | |
傳回鍊錶最後一元素的後向指標reverse_iterator | |
#傳回鍊錶第一元素的下一位置的reverse_iterator |
#push_back |
##增加一個資料到鍊錶尾 | push_front |
#增加一個資料到鍊錶頭 | pop_back |
刪除鍊錶尾的一個元素 | pop_front |
刪除鍊錶頭的一元素 | clear |
刪除所有元素 | erase |
刪除一個元素或一個區域的元素(兩個重載) | #remove |
刪除鍊錶中符合值的元素(符合元素全部刪除) | # #remove_if |
empty |
|
#max_size |
|
size | |
#resize |
以上是C++中 STL list使用方法實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!