#include<iostream>
#include<list>
using namespace std;
void printList(const list<int>& L)
{
for (list<int>::const_iterator it = L.begin(); it != L.end();it++)
{
cout << *it << " ";
}
cout << endl;
}
void test01()//默认构造
{
list<int>L1;
L1.push_back(10);
L1.push_back(20);
L1.push_back(30);
L1.push_back(40);
printList(L1);
list<int>L2(L1.begin(), L1.end());
printList(L2);
list<int>L3(L2);
printList(L3);
list<int>L4(10, 1000);
printList(L4);
}
void test02()//默认构造
{
list<int>L1;
L1.push_back(10);
L1.push_back(20);
L1.push_back(30);
L1.push_back(40);
cout << "交换前" << endl;
printList(L1);
list<int>L2;
L2 = L1;
list<int>L3;
L3.assign(L2.begin(), L2.end());
list<int>L4;
L4.assign(10, 100);
printList(L4);
//交换
L1.swap(L4);
cout << "交换后" << endl;
printList(L1);
printList(L4);
}
void test03()//大小操作
{
list<int>L1;
L1.push_back(10);
L1.push_back(20);
L1.push_back(30);
L1.push_back(40);
if (L1.empty())
{
cout << "为空";
}
else
{
cout << "不为空" << endl;
cout << "其中元素个数为:" << L1.size() << endl;
}
//重新指定大小
L1.resize(10,10000);
printList(L1);
L1.resize(2);
printList(L1);
}
void test04()//插入和删除
{
list<int>L;
//尾插
L.push_back(10);
L.push_back(20);
L.push_back(30);
//头插
L.push_front(100);
L.push_front(200);
L.push_front(300);
printList(L);
//尾删
L.pop_back();
printList(L);
//头删
L.pop_front();
printList(L);
//insert插入
L.insert(L.begin(), 1000);
printList(L);
list<int>::iterator it = L.begin();
L.insert(++it, 2000);
printList(L);
//删除
it = L.begin();
L.erase(it);
printList(L);
//移除
L.push_back(10000);
L.push_back(10000);
L.push_back(10000);
L.push_back(10000);
printList(L);
L.remove(10000);
printList(L);
//清空
L.clear();
printList(L);
}
void test05()//数据存取
{
list<int>L1;
L1.push_back(10);
L1.push_back(20);
L1.push_back(30);
L1.push_back(40);
//L[0]不可以用[]访问
//L.at(0) 不可以用at方式访问list中的元素
//原因是list本质是链表,不适用连续的线性空间存储数据,迭代器也不支持随机访问的
cout << "第一个元素为:" << L1.front() << endl;
cout << "最后一个元素为:" << L1.back() << endl;
//验证迭代器是不支持随机访问的
list<int>::iterator it = L1.begin();
it++;
it--;
//it=it+1;//不支持随机访问
}
bool myCompare(int v1,int v2)
{
//降序,就让第一个数大于第二个数
return v1 > v2;
}
void test06()//反转和排序
{
list<int>L1;
L1.push_back(20);
L1.push_back(10);
L1.push_back(50);
L1.push_back(40);
cout << "反转前:" << endl;
printList(L1);
//反转
L1.reverse();
cout << "反转后:" << endl;
printList(L1);
//排序
cout << "排序前" << endl;
printList(L1);
//所有不支持随机访问的迭代器的容器不可以用标准算法
//不支持随机访问迭代器的容器,内部会提供对应的一些算法
//sort(L1.begin(),L1.endl());错误
L1.sort();//默认从小到大
cout << "排序后:" << endl;
printList(L1);
L1.sort(myCompare);
printList(L1);
}
int main() {
test06();
}
list容器
最新推荐文章于 2024-06-03 09:14:44 发布