您好,登錄后才能下訂單哦!
小編給大家分享一下C++中list雙向鏈表怎么用,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
一、簡介
“Unlike other standard sequence containers, list and forward_list objects are specifically designed to be efficient inserting and removing elements in any position, even in the middle of the sequence.”
Lists將元素按順序儲存在鏈表中。與向量(vector)相比, 它允許快速的插入和刪除,但是隨機訪問卻比較慢。(vector支持快速隨機訪問)
之前就提到過,list可以在頭部進行添加刪除操作,但vector不行。
下面是幾個list特有的函數。(從另一方面說明list在刪除操作方面的速度之快)
remove() 從list刪除元素
remove_if() 按指定條件刪除元素
reverse() 把list的元素倒轉
sort() 給list排序
unique() 刪除list中重復的元素
二、完整程序代碼
/*請務必運行以下程序后對照閱讀*/ #include <list> #include <iostream> #include <algorithm> using namespace std; void print(int num) { cout << num << " "; } bool IsOdd(int i) { return ((i & 1) == 1); } int main() { //1. 初始化 list<int> v; list<int>::iterator iv; v.assign(10, 2);//將10個值為2的元素賦到list中 cout << v.size() << endl; //返回list實際含有的元素數量 cout << endl; //2. 添加 v.push_front(666); for (int i = 0; i < 10; i++) v.push_back(i); for_each(v.begin(), v.end(), print);//需要#include <algorithm> cout << endl; cout << v.size() << endl; cout << endl; //3. 插入及遍歷、逆遍歷和倒轉 v.insert(v.begin() , 99);//不能+和-了 v.insert(v.end() , 99); for_each(v.begin(), v.end(), print); cout << endl; for_each(v.rbegin(), v.rend(), print);//在逆序迭代器上做++運算將指向容器中的前一個元素 cout << endl; //一般遍歷寫法 for(iv = v.begin(); iv != v.end(); ++iv) cout << *iv << " "; cout << endl; v.reverse(); for_each(v.begin(), v.end(), print); cout << endl; for_each(v.rbegin(), v.rend(), print); cout << endl; cout << endl; //4. 排序 v.sort();//為鏈表排序,默認是升序。 for_each(v.begin(), v.end(), print); cout << endl; cout << endl; //5. 刪除 v.erase(v.begin()); for_each(v.begin(), v.end(), print); cout << endl; v.insert(v.begin() , 99);//還原 //刪掉鏈表中所有重復的元素 v.unique(); for_each(v.begin(), v.end(), print); cout << endl; //去掉所有含2的元素 v.remove(2); for_each(v.begin(), v.end(), print); cout << endl; //刪掉所有奇數 v.remove_if(IsOdd); for_each(v.begin(), v.end(), print); cout << endl; v.pop_front(); v.pop_back(); for_each(v.begin(), v.end(), print); cout << endl; cout << endl; //6. 查詢 cout << v.front() << endl; cout << v.back() << endl; //7. 清空 v.clear(); cout << v.size() << endl;//0 for_each(v.begin(), v.end(), print); //已經clear,v.begin()==v.end(),不會有任何結果。 return 0; }
當然,我們也可以用動態數組作為保存的數據類型:
#include<iostream> #include<string> #include<list> using namespace std; int main() { list<char *> li; list<char *>::iterator iter; li.push_back("123"); li.push_back("456"); li.push_back("789"); for (iter = li.begin(); iter != li.end(); ++iter) cout << *iter << endl; return 0; }
三、補充
對比vector和list在查詢(隨機檢索)和維護(插入和刪除)上的區別:
a) 查詢
vector:由于vector中的元素是連續存儲的,所以我們能夠直接的訪問第n個元素。
list:由于list中的元素不是在內存中連續存儲的,下一個元素的內存地址保存在前一個元素中,所以我們必須一個一個的訪問前面的元素,最后才能訪問第n個元素。
當然,對于順序訪問就二者就差不多了。
b) 維護
vector:在vector中插入/刪除一個元素的話,我們需要移動插入/刪除位置之后的所有元素。如果在vector插入/刪除元素后有大量元素的情況下,顯而易見,這些移動和刪除操作會大量的消耗CPU時間。
list:使用list進行這些操作的時候,其僅僅是修改插入/刪除元素之前的元素到后一個元素的指針則可以完成這些操作,這樣可以節約大量的CPU時間。
以上是“C++中list雙向鏈表怎么用”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。