亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

建德市| 台东县| 南漳县| 青海省| 同江市| 靖宇县| 惠来县| 淮南市| 海淀区| 永德县| 泰州市| 岳普湖县| 封开县| 津南区| 阳朔县| 蒙山县| 延庆县| 嘉兴市| 夏邑县| 仪陇县| 平山县| 太保市| 微博| 铁岭市| 如皋市| 石狮市| 南汇区| 松江区| 乐亭县| 新源县| 宜宾市| 日照市| 阜新市| 华亭县| 泰安市| 河曲县| 平果县| 德化县| 叙永县| 宣化县| 望谟县|