中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++中 STL list使用方法案例

發布時間:2020-10-19 17:21:48 來源:億速云 閱讀:233 作者:小新 欄目:編程語言

這篇文章主要介紹了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"); 
}

運行結果圖片:

C++中 STL list使用方法案例

3、List 方法

list成員

說明

constructor

構造函數

destructor

析構函數

operator=

賦值重載運算符

assign

分配值

front

返回第一個元素的引用

back

返回最后一元素的引用

begin

返回第一個元素的iterator

end

返回最后一個元素的下一位置的iterator

rbegin

返回鏈表最后一元素的后向指針reverse_iterator

rend

返回鏈表第一元素的下一位置的reverse_iterator

push_back

增加一個數據到鏈表尾

push_front

增加一個數據到鏈表頭

pop_back

刪除鏈表尾的一個元素

pop_front

刪除鏈表頭的一元素

clear

刪除所有元素

erase

刪除一個元素或一個區域的元素(兩個重載)

remove

刪除鏈表中匹配值的元素(匹配元素全部刪除)

remove_if

刪除條件滿足的元素(遍歷一次鏈表),參數為自定義的回調函數

empty

判斷是否鏈表為空

max_size

返回鏈表最大可能長度

size

返回鏈表中元素個數

resize

重新定義鏈表長度(兩重載函數)

reverse

反轉鏈表

sort

對鏈表排序,默認升序

merge

合并兩個有序鏈表并使之有序

splice

對兩個鏈表進行結合(三個重載函數) 結合后第二個鏈表清空

insert

在指定位置插入一個或多個元素(三個重載函數)

swap

交換兩個鏈表(兩個重載)

unique

刪除相鄰重復元素

感謝你能夠認真閱讀完這篇文章,希望小編分享C++中 STL list使用方法案例內容對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,遇到問題就找億速云,詳細的解決方法等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

定襄县| 清镇市| 亳州市| 盐边县| 咸丰县| 莒南县| 新闻| 工布江达县| 芦山县| 桂阳县| 航空| 四平市| 兰州市| 夹江县| 高淳县| 开江县| 永年县| 城市| 安吉县| 南溪县| 乌鲁木齐县| 夏津县| 衡阳县| 南岸区| 茂名市| 会东县| 威远县| 黄大仙区| 当涂县| 乌海市| 营口市| 双城市| 滨州市| 迁西县| 安乡县| 奉新县| 多伦县| 那坡县| 宁明县| 桐庐县| 三河市|