20230507,LIST容器

学了又忘学了又忘,明知道会忘又不想复习又还得学

LIST容器

1.1 基本概念

 链表是一种物理存储单元上非连续的存储结构,数据元素的逻辑顺序通过链表中的指针链接实现的;链表由一系列结点组成
结点:一个是存储数据元素的数据域,一个是存储下一个结点地址的指针域
STL中的链表是一个双向循环链表,迭代器只支持前移和后移(不支持跳跃式访问),属于双向迭代器

优点:可以对任意位置进行快速插入或删除元素,操作方便,修改指针即可,不需要移动大量元素;动态内存分配,不会造成内存浪费和溢出
缺点:容器遍历速度没有数组快,占用空间比数组灵活,但空间(指针域)和时间(遍历)额外耗费巨大

LIST有一个重要的性质,插入和删除都不会造成原有LIST迭代器的失效,这在VECTOR里面是不成立的
STL中LIST和VECTOR是两个最常使用容器,各有优缺点

1.2 构造函数

 list<T> lst;             //采用模板类实现,对象的默认构造形式
list(beg,end);            //首尾区间拷贝
list(n,elem);             //N个ELEM拷贝
list(const list &lst);    //拷贝构造函数

#include<iostream>
#include<list>
#include<string>
using namespace std;
/*
list<T> lst;             //采用模板类实现,对象的默认构造形式
list(beg,end);            //首尾区间拷贝
list(n,elem);             //N个ELEM拷贝
list(const list &lst);    //拷贝构造函数
*/
void printl(const list<int>& l) {for (list<int>::const_iterator it = l.begin(); it != l .end(); it++) {cout << *it << " ";}cout << endl;
}
void test01() {list<int>l;            // list<T> lst;l.push_back(10);l.push_back(20);l.push_back(30);l.push_back(40);printl(l);list<int>l2(l.begin(), l.end());printl(l2);list<int>l3(5,100);printl(l3);list<int>l4(l);printl(l4);
}
int main() {test01();system("pause");return 0;
}
1.3 赋值和交换

 assign(beg,end);
assign(n,elem)
list &operator=(const list &lst);
swap(lst)

#include<iostream>
#include<list>
#include<string>
using namespace std;
/*
assign(beg,end);
assign(n,elem)
list &operator=(const list &lst);
swap(lst)
*/
void printl(const list<int>& l) {for (list<int>::const_iterator it = l.begin(); it != l .end(); it++) {cout << *it << " ";}cout << endl;
}
void test01() {list<int>l;            // list<T> lst;l.push_back(10);l.push_back(20);l.push_back(30);l.push_back(40);printl(l);list<int>l2;l2.assign(l.begin(), l.end());printl(l2);l2.assign(9, 78);printl(l2);cout <<"l2.size()="<< l2.size() << endl;list<int>l3;l3 = l;printl(l3);cout << "l3.size()=" << l3.size() << endl;l3.swap(l2);printl(l2);cout << "l2.size()=" << l2.size() << endl;printl(l3);cout << "l3.size()=" << l3.size() << endl;
}
int main() {test01();system("pause");return 0;
}
1.4 大小操作

empty()
size()
lst.resize(n,elem)
lst.resize(n) 

#include<iostream>
#include<list>
#include<string>
using namespace std;
/*
empty()
size()
lst.resize(n,elem)
lst.resize(n)
*/
void printl(const list<int>& l) {for (list<int>::const_iterator it = l.begin(); it != l .end(); it++) {cout << *it << " ";}cout << endl;
}
void isempty(const list<int>& l) {if (l.empty()) {cout << "空" << endl;}else {cout << " bubu <" << endl;cout << " size:" << l.size() << endl;}
}
void test01() {list<int>l;            // list<T> lst;isempty(l);l.push_back(10);l.push_back(20);l.push_back(30);l.push_back(40);printl(l);isempty(l);l.resize(10, 99);printl(l);isempty(l);l.resize(2);printl(l);isempty(l);
}
int main() {test01();system("pause");return 0;
}
1.5 插入和删除——代码有BUG,暂时搞不懂

push_back(elem)    push_front(elem)    pop_back()     pop_front()
insert(pos,elem)返回新数据位置    insert(pos,n,elem)无返回值    insert(n,beg,end)无返回值
cleae()    erase(beg,end)返回下一个数据位置    erase(pos)返回下一个数据位置  
remove(elem)删除容器中所有值与ELEM匹配的元素 

#include<iostream>
#include<list>
#include<string>
using namespace std;
/*
push_back(elem)  push_front(elem)  pop_back()   pop_front()
insert(pos,elem)返回新数据位置  insert(pos,n,elem)无返回值  insert(n,beg,end)无返回值
cleae()  erase(beg,end)返回下一个数据位置  erase(pos)返回下一个数据位置  
remove(elem)删除容器中所有值与ELEM匹配的元素
*/
void printl(const list<int>& l) {for (list<int>::const_iterator i = l.begin(); i != l .end(); i++) {cout << *i<< " ";}cout << endl;
}
void isempty(const list<int>& l) {if (l.empty()) {cout << "空" << endl;}else {cout << " bubu <" << endl;cout << " size:" << l.size() << endl;}
}
void test01() {list<int>l;         l.push_back(10);l.push_back(20);l.push_back(30);l.push_back(40);l.push_front(111);l.push_front(222);l.push_front(333);printl(l);isempty(l);l.pop_back();l.pop_front();printl(l);list<int>::iterator it = l.begin();//l.insert(it,10000);it++;//cout << it << endl;l.insert(it, 4);//在第 1 个位置后面 插入,返回新数据位置 2printl(l);it++;//it--2,it++=3l.insert(it, 99,3);//在第 3 个位置后面 插入,it= 4+99=103printl(l);l.insert(it,l.begin(),l.end());//在第 it 个位置后面 插入printl(l);l.erase(it);printl(l);//l.erase(it);//加上就报错,说无效参数传……*&&(*&(……//l.erase(l.end());//l.remove(3);printl(l);l.erase(l.begin());printl(l);l.clear();printl(l);
}
int main() {test01();system("pause");return 0;
}
1.6 数据存取

front()          back(),不支持中括号的方式访问,本质是链表,因为不是连续的线性空间存储数据,迭代器也不支持随机访问
++,--就是支持双向,+N就是支持随机

#include<iostream>
#include<list>
#include<string>
using namespace std;
/*
front()          back()
*/
void printl(const list<int>& l) {for (list<int>::const_iterator i = l.begin(); i != l .end(); i++) {cout << *i<< " ";}cout << endl;
}
void isempty(const list<int>& l) {if (l.empty()) {cout << "空" << endl;}else {cout << " bubu <" << endl;cout << " size:" << l.size() << endl;}
}
void test01() {list<int>l;         l.push_back(10);l.push_back(20);l.push_back(30);l.push_back(40);l.push_front(111);l.push_front(222);l.push_front(333);printl(l);isempty(l);cout << l.front() << endl;cout << l.back() << endl;}
int main() {test01();system("pause");return 0;
}
1.7 反转和排序

reverse()//反转链表    sort()链表排序——升序降序

#include<iostream>
#include<list>
#include<string>
#include<algorithm>
using namespace std;
/*
reverse()//反转链表    sort()链表排序
*/
void printl(const list<int>& l) {for (list<int>::const_iterator i = l.begin(); i != l .end(); i++) {cout << *i<< " ";}cout << endl;
}
bool mycompare(int v1, int v2) {//降序,第一个数,大于,第二个数return v1 > v2;
}
void test01() {list<int>l;         l.push_back(10);l.push_back(20);l.push_back(30);l.push_back(40);l.push_front(111);l.push_front(222);l.push_front(333);printl(l);l.reverse();printl(l);//sort(l.begin(),l.end());//所有不支持随机访问迭代器的容器,不可以用标准算法//但容器内部会提供对应的一些算法,成员函数l.sort();printl(l);l.sort(mycompare);printl(l);
}
int main() {test01();system("pause");return 0;
}
1.8 排序案例——Person自定义数组类型进行排序,Person(姓名,年龄,身高)
年龄升序,年龄相同身高降序

先指定排序规则,再直接调用

#include<iostream>
#include<list>
#include<string>
using namespace std;
/*
Person自定义数组类型进行排序,Person(姓名,年龄,身高)
年龄升序,年龄相同身高降序
*/
class Person {
public:Person(string name, int age, int tall) {this->_name = name;this->_age = age;this->_tall = tall;}
public:string _name;int _age;int _tall;
};
void printl(const list<Person>& l) {for (list<Person>::const_iterator it = l.begin(); it != l .end(); it++) {cout << "选手: " << it->_name << "\t年龄: " << it->_age << "\t身高:" << it->_tall << endl;}cout << endl;
}
void setpp(list<Person>& l) {Person p1("有哈", 18, 180);Person p2("hhki", 16, 190);Person p3("黄金分割", 22, 210);Person p4("会后i", 16, 130);Person p5("经济", 30, 150);l.push_back(p1);l.push_back(p2);l.push_back(p3);l.push_back(p4);l.push_back(p5);
}
void setpp2(list<Person>& l) {srand((unsigned int)time(NULL));string nameseed = "abcde";for (int i = 0; i < 5; i++) {string name = "选手";name += nameseed[i];int age = rand() % 21 + 20;int tall = rand() % 51 + 150;Person p(name, age, tall);l.push_back(p);}
}
//指定排序规则
bool mycompare(Person&p1,Person&p2) {if (p1._age == p2._age) {return p1._tall < p2._tall;}else {return p1._age < p2._age;}
}
void test01() {list<Person>l;         //setpp(l);setpp2(l);printl(l);l.sort(mycompare);printl(l);
}
int main() {test01();system("pause");return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/674756.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

算法提高之树的最长路径

算法提高之树的最长路径 核心思想&#xff1a;树形dp 枚举路径的中间节点用f1[i] 表示i的子树到i的最长距离,f2[i]表示次长距离最终答案就是max(f1[i]f2[i]) #include <iostream>#include <cstring>#include <algorithm>using namespace std;const int N …

JavaScript异步编程——02-Ajax入门和发送http请求

同步和异步回顾 同步和异步的简单理解 同步&#xff1a;必须等待前面的任务完成&#xff0c;才能继续后面的任务。 异步&#xff1a;不受当前任务的影响。 拿排队举例&#xff1a; 同步&#xff1a;在银行排队时&#xff0c;只有等到你了&#xff0c;才能够去处理业务。 异…

NumPy及Matplotlib基本用法

NumPy及Matplotlib基本用法 导语NumPy导入与生成算术运算N维数组广播元素访问 Matplotlib简单图案绘制多函数绘制图像显示参考文献 导语 深度学习中经常需要对图像和矩阵进行操作&#xff0c;好在python提供了Numpy和Matplotlib库&#xff0c;前者类似一个已经定义的数组类&am…

基于FPGA的DDS波形发生器VHDL代码Quartus仿真

名称&#xff1a;基于FPGA的DDS波形发生器VHDL代码Quartus仿真&#xff08;文末获取&#xff09; 软件&#xff1a;Quartus 语言&#xff1a;VHDL 代码功能&#xff1a; DDS波形发生器VHDL 1、可以输出正弦波、方波、三角波 2、可以控制输出波形的频率 DDS波形发生器原理…

Linux信号捕捉

要处理信号&#xff0c; 我们进程就得知道自己是否收到了信号&#xff0c; 收到了哪些信号&#xff0c; 所以进程需要再合适的时候去查一查自己的pending位图 block 位图 和 hander表&#xff0c; 什么时候进行检测呢&#xff1f; 当我们的进程从内核态返回到用户态的时候&…

基于Springboot的教学辅助系统(有报告)。Javaee项目,springboot项目。

演示视频&#xff1a; 基于Springboot的教学辅助系统&#xff08;有报告&#xff09;。Javaee项目&#xff0c;springboot项目。 项目介绍&#xff1a; 采用M&#xff08;model&#xff09;V&#xff08;view&#xff09;C&#xff08;controller&#xff09;三层体系结构&…

【Linux】Linux线程

一、Linux线程的概念 1.什么是线程 1.一个进程的一个执行线路叫做线程&#xff0c;线程的一个进程内部的控制序列。 2.一个进程至少有一个执行线程 3.线程在进程内部&#xff0c;本质是在进程地址空间内运行 4.操作系统将进程虚拟地址空间的资源分配给每个执行流&#xff0…

上位机图像处理和嵌入式模块部署(树莓派4b代码优化)

【 声明&#xff1a;版权所有&#xff0c;欢迎转载&#xff0c;请勿用于商业用途。 联系信箱&#xff1a;feixiaoxing 163.com】 我们把程序从pc端port到嵌入式开发板上面&#xff0c;好处是降低了部署成本&#xff0c;代价是牺牲了设备性能。所以等到程序真正在开发板子上面运…

YARN详解

YARN 简介 YARN 是Yet Another Resource Negotiator的缩写。 YARN是第二代MapReduce,即MRv2,是在第一代MapReduce基础上演变而来的,主要是为了解决原始Hadoop扩展性较差,不支持多计算框架而提出的;通俗讲就是资源管理器. YARN核心思想: 将 MR1 中资源管理和作业调度两个功能分…

Linux\_c输出

第一条Linux_c输出 初界面 : ls # 显示目录下的文件cd # 进入到某个目录 # 比如 我进入了Codels # 发现没有显示, 说明为文件下为空vim cpucdoe.c # 创建一个 .c的源码文件进入到了vim的编辑界面: i # 按i 就可以进行编辑 , 下面显示插入标识在编辑模式下, 可以通…

QX-mini51学习---(2)点亮LED

目录 1什么是ed 2led工作参数 3本节相关原理图分析 4本节相关c 5实践 1什么是ed 半导体发光二极管&#xff0c;将电能转化为光能&#xff0c;耗电低&#xff0c;寿命长&#xff0c;抗震动 长正短负&#xff0c;贴片是绿点处是负极 2led工作参数 3本节相关原理图分析 当…

(五)JVM实战——JVM性能调优与监控

JVM调优案例的场景 为什么要调优&#xff1a;防止或者解决jvm虚拟机中的OOM问题&#xff1b;减少FullGC出现的频率&#xff0c;解决系统运行卡、慢问题JVM调优案例的四个方面 OOM(堆溢出)&#xff1a;java heap spaceOOM(元空间溢出)&#xff1a;MetaspaceOOM(GC overhead lim…