马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本帖最后由 这是她 于 2020-6-22 21:40 编辑
Never assume that you are stuck with the way things are.Life changes,and so can you. ——Ralph Marston
List
功能:将数据进行链式存储
链表由一系列结点组成,是一个双向循环列表。
结点的组成:一个是存储数据的元素的数据域,另一个是存储下一个结点地址的指针域。
列表不是连续的内存空间,因此链表中的迭代器只支持前移和后移,属于双向迭代器。
list的优点:
采用动态存储分配,不会造成内存浪费和溢出。
链表执行插入和删除操作十分方便,修改指针即可,不需要移动大量元素。
list的缺点:
链表空间(指针域)和时间(遍历)额外耗费较大
#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 test1()
{
list<int>L1;
L1.push_back(100);
L1.push_back(200);
L1.push_back(300);
L1.push_back(400);
printlist(L1);
//区间方式构造
list<int>L2(L1.begin(),L1.end());
printlist(L2);
//拷贝构造
list<int>L3(L2);
printlist(L3);
//n个元素
list<int>L4(10,999999);
printlist(L4);
}
void test2()
{
list<int>L1;
L1.push_back(111);
L1.push_back(222);
L1.push_back(333);
L1.push_back(555);
printlist(L1);
//operator赋值
list<int>L2;
L2 = L1;
printlist(L2);
//assign
list<int>L3;
L3.assign(L2.begin(),L2.end());
printlist(L3);
list<int>L4;
L4.assign(10,999);
printlist(L4);
}
void test3()
{
list<int>L1;
L1.push_back(111);
L1.push_back(222);
L1.push_back(333);
list<int>L2(5,999);
cout << "交换前: " << endl;
printlist(L1);
printlist(L2);
L1.swap(L2);
cout << "交换后: " << endl;
printlist(L1);
printlist(L2);
}
void test4()
{
list<int>L1;
L1.push_back(111);
L1.push_back(222);
L1.push_back(333);
printlist(L1);
if (L1.empty())
{
cout << "L1为空!!!!!!!!!!!" << endl;
}
else
{
cout << "L1不为空!!!!!!!!!!!" << endl;
cout << "L1的元素个数为: " << L1.size() << endl;
}
//重新指定大小
L1.resize(10);
printlist(L1);
L1.resize(15,9999);
printlist(L1);
L1.resize(5);
printlist(L1);
}
void test5()
{
list<int>L1;
//尾插
L1.push_back(123);
L1.push_back(234);
L1.push_back(345);
L1.push_back(456);
//头插
L1.push_front(100);
L1.push_front(200);
L1.push_front(300);
printlist(L1);
//尾删
L1.pop_back();
printlist(L1);
//头删
L1.pop_front();
printlist(L1);
//insert插入
list<int>::iterator it = L1.begin();
L1.insert(++it,9999);
printlist(L1);
//删除
it = L1.begin();
L1.erase(it);
printlist(L1);
//移除
L1.push_back(88888);
L1.push_back(88888);
L1.push_back(88888);
printlist(L1);
L1.remove(88888);
printlist(L1);
//清空
L1.clear();
printlist(L1);
}
void test6()
{
list<int>L1;
L1.push_back(10);
L1.push_back(20);
L1.push_back(30);
L1.push_back(40);
//不可以用[]访问list容器中的元素
//不可以用at方式访问list容器中的元素
//原因:list本质是链表,不是用连续线性空间存取数据,迭代器也是不支持随机访问的
cout << "第一个元素为: " << L1.front() << endl;
cout << "最后一个元素为: " << L1.back() << endl;
//验证迭代器是不支持随机访问的
list<int>::iterator it = L1.begin();
it++;
it--;
//it = it + 1;
}
void test7()
{
list<int>L1;
L1.push_back(10);
L1.push_back(20);
L1.push_back(30);
L1.push_back(40);
cout << "反转前: " << endl;
printlist(L1);
//反转
L1.reverse();
cout << "反转后: " << endl;
printlist(L1);
}
void test8()
{
list<int>L1;
L1.push_back(50);
L1.push_back(80);
L1.push_back(30);
//排序
cout << "排序前: " << endl;
printlist(L1);
L1.sort();//默认排序规则 从小到大 升序
cout << "排序后: " << endl;
printlist(L1);
//所有不支持随机访问迭代器的容器,不可以用标准算法
//不支持随机访问迭代器的容器,内部会提供对应一些算法
//sort(L1.begin(),L1,end());
}
int main()
{
test1();//list构造函数
test2();//list赋值
test3();//list交换
test4();//list大小操作
test5();//list插入和删除
test6();//list数据存取
test7();//list反转
test8();//list排序
return 0;
}
|