91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

c++list的使用方法

發布時間:2020-06-25 22:34:09 來源:網絡 閱讀:928 作者:TheRoodToDeath 欄目:編程語言

/*首先我是c語言的愛好者,之前沒接觸過c++,現在開始學習c++,因此總會和c語言進行對比,所謂的容器,其實就是鏈表的!在c語言數據結構中有所提及,c++把其進行封裝成了庫,不需要像以前學習數據結構那樣具體去實現,只要學院、會調用就可以了。

*/

#include "stdafx.h"

#include <iostream>   

#include <list>   

#include <windows.h>  

using namespace std;

typedef list<int> INTLIST;  //定義一個數列INTLIST,下一次遇見他的時候就會可以等價一個數組或者是一個容器或者是一個迭代器。


//從前向后顯示list隊列的全部元素   

void put_list(INTLIST list, char *name)

{

INTLIST::iterator plist;


cout << "The contents of " << name << " : ";

for (plist = list.begin(); plist != list.end(); plist++)

cout << *plist << " ";

cout << endl;

}


//測試list容器的功能   

void main(void)

{

//list1對象初始為空   

INTLIST list1;

INTLIST list2(5, 1);

INTLIST list3(list2.begin(), --list2.end());


//聲明一個名為i的雙向迭代器   

INTLIST::iterator i;


put_list(list1, "list1"); //print the lists

put_list(list2, "list2");

put_list(list3, "list3");


list1.push_back(7); //mask the lseven num put out

list1.push_back(8);

cout << "list1.push_back(7) and list1.push_back(8):" << endl;

put_list(list1, "list1");


list1.push_front(6);  //把第一個元素6壓入第一個元素內

list1.push_front(5);

cout << "list1.push_front(6) and list1.push_front(5):" << endl;

put_list(list1, "list1");


list1.insert(list1.begin(), 3, 9); //list1的首位直添加3個9.

cout << "list1.insert(list1.begin()+1,3,9):" << endl;

put_list(list1, "list1");


//測試引用類函數   

cout << "list1.front()=" << list1.front() << endl;

cout << "list1.back()=" << list1.back() << endl;


list1.pop_front();

list1.pop_back();

cout << "list1.pop_front() and list1.pop_back():" << endl;

put_list(list1, "list1");


list1.erase(++list1.begin());//擦出第一個元素

cout << "list1.erase(++list1.begin()):" << endl;

put_list(list1, "list1");


list2.assign(8, 1);

cout << "list2.assign(8,1):" << endl;

put_list(list2, "list2");


cout << "list1.max_size(): " << list1.max_size() << endl;

cout << "list1.size(): " << list1.size() << endl;

cout << "list1.empty(): " << list1.empty() << endl;


put_list(list1, "list1");

put_list(list3, "list3");

cout << "list1>list3: " << (list1 > list3) << endl;

cout << "list1<list3: " << (list1 < list3) << endl;


list1.sort();

put_list(list1, "list1");


list1.splice(++list1.begin(), list3);

put_list(list1, "list1");

put_list(list3, "list3");

Sleep(10000);

}



向AI問一下細節

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

AI

剑阁县| 呼玛县| 山东省| 荔浦县| 美姑县| 封丘县| 上饶县| 黎川县| 吉木萨尔县| 新干县| 马公市| 老河口市| 绥芬河市| 安岳县| 新乐市| 民乐县| 锦屏县| 珲春市| 大港区| 怀远县| 辰溪县| 平罗县| 台北市| 潢川县| 古丈县| 靖安县| 无棣县| 福鼎市| 莲花县| 陈巴尔虎旗| 克山县| 房山区| 会宁县| 汉中市| 兴山县| 萝北县| 镇远县| 漠河县| 小金县| 平乡县| 尤溪县|