STL容器篇之list

简介: STL容器篇之list

list

这是C++中的链表,

主要学会使用增删改查

创建过程

#include<iostream>
#include<string>
#include<list>  //同样,使用容器,要是使用相对应的头文件
using namespace std;
class MM
{
private:
  int age;
  string name;
  string sex;
};
int main()
{
  //创建方式: list<数据方式> 对象
  list<int> ilist;    
  list<string> slist;
  list<MM> mm;
  //list也可以操作自定义类型(类名)
  system("pause");
  return 0;
}

头插与尾插以及删除

#include<iostream>
#include<string>
#include<list>
using namespace std;
int main()
{
  list<int> ilist;
  list<int> iilist;
  for (int i = 0; i < 4; i++)
  {
    ilist.push_back(i);  //尾插法
  }
  for (int i = 0; i < 4; i++)
  {
    iilist.push_front(i);  //头插法
  }
  for (auto& v : ilist)  //新版for循环
  {
    cout << v;
  }
  cout << endl;
  for (auto& v : iilist)
  {
    cout << v;
  }
  system("pause");
  return 0;
}

一边删除一边打印

//一边删除,一边打印
  while (!ilist.empty())  //list容器不为空
  {
    cout << ilist.front() << endl;  //打印首元素
    ilist.pop_front();              //尾插法

指定位置插入

这里主要要学会使用insert()函数,和find()算法

#include<iostream>
#include<list>
using namespace std;
int main()
{
  list<string> slist;
  slist.push_back("I");
  slist.push_back("you");
  //insert()插入函数    运用find()算法查找  find第一个参数和第二个参数表示查找的范围,第三个参数表示查找的东西,
  //find()算法,如果找到的话,返回的是迭代器,如果没有找到,返回的容器结束的位置
  //insert()第二个参数表示,需要插入的数据(在找到的数据的前面插入)
  //一般情况 insert()函数和find算法一起使用
  slist.insert(find(slist.begin(), slist.end(), "you"), "love");  
  for (auto& v : slist)
  {
    cout << v;
  }
}

指定位置删除

删除函数为erase()

sort()排序函数

reserve()反转函数

基本思路,跟指定位置插入数据差不多

include<iostream>
#include<list>
using namespace std;
int main()
{
  list<int> ilist;
  for (int i = 0; i < 4; i++)
  {
    ilist.push_front(i);
  }
  ilist.erase(find(ilist.begin(), ilist.end(), 3));
  ilist.sort();//排序算法(一般从小到大)
  ilist.reverse();//反转函数
  for (auto& v : ilist)
  {
    cout << v;
  }
  system("pause");
  return 0;
}

list容器操作自定义类型

这里的话,主要通过list容器写了2个功能

添加信息和打印信息

后面完整的项目,会在C++项目专栏中写到

//list操作自定义类型
#include<iostream>
#include<string>
#include<cstdlib>
#include<conio.h>
#include<list>
using namespace std;
class MM
{
public:
  MM() {}
  MM(int age,string name): age(age), name(name) {}
  friend ostream& operator << (ostream& out, MM& object)
  {
    out << object.age << "\t" << object.name << endl;
    return out;
  }
  friend istream& operator >> (istream& in, MM& object)
  {
    in >> object.age >> object.name;
    return in;
  }
private:
  int age;
  string name;
};
class mm
{
public:
  void menu();
  void keyDown();
  void insertDate();
  void printDate();
private:
  list<MM> mmdate;
};
void mm::menu()
{
  cout <<"-----------------" << endl;
  cout << "0.退出系统" << endl;
  cout << "1.添加信息" << endl;
  cout << "2.浏览信息" << endl;
  cout << "-----------------" << endl;
}
void mm::keyDown()
{
  char message = _getch();
  switch (message)
  {
  case '0':
    exit(0); //退出函数
    break;
  case '1':
    insertDate();  //插入数据
    break;
  case '2':
    printDate();  //打印数据
    break;
  default:
    cout << "请在0--2中选择";
  }
}
void mm:: insertDate()
{
  cout << "请输入美女的年龄和姓名" << endl;
  MM mm1; 
  cin >> mm1;
  mmdate.push_back(mm1);
}
void mm::printDate()
{
  cout << "年龄\t" << "姓名\t" << endl;
  for (auto& v : mmdate)
  {
    cout << v;
  }
  cout << endl;
}
int main()
{
  mm* p = new mm;
  while (1)
  {
    p->menu();
    p->keyDown();
    system("pause");
    system("cls");
  }
  system("pause");
  return 0;
}

相关文章
|
2月前
|
存储 搜索推荐 C++
【C++篇】深度剖析C++ STL:玩转 list 容器,解锁高效编程的秘密武器2
【C++篇】深度剖析C++ STL:玩转 list 容器,解锁高效编程的秘密武器
55 2
【C++篇】深度剖析C++ STL:玩转 list 容器,解锁高效编程的秘密武器2
|
2月前
|
存储 C++ 容器
【C++篇】深度剖析C++ STL:玩转 list 容器,解锁高效编程的秘密武器1
【C++篇】深度剖析C++ STL:玩转 list 容器,解锁高效编程的秘密武器
55 5
|
2月前
|
存储 编译器 C++
【C++篇】揭开 C++ STL list 容器的神秘面纱:从底层设计到高效应用的全景解析(附源码)
【C++篇】揭开 C++ STL list 容器的神秘面纱:从底层设计到高效应用的全景解析(附源码)
59 2
|
2月前
|
C++
【C++】C++ STL 探索:List使用与背后底层逻辑(三)
【C++】C++ STL 探索:List使用与背后底层逻辑
|
6月前
|
安全 Java
java线程之List集合并发安全问题及解决方案
java线程之List集合并发安全问题及解决方案
984 1
|
5月前
|
Java API Apache
怎么在在 Java 中对List进行分区
本文介绍了如何将列表拆分为给定大小的子列表。尽管标准Java集合API未直接支持此功能,但Guava和Apache Commons Collections提供了相关API。
|
5月前
|
运维 关系型数据库 Java
PolarDB产品使用问题之使用List或Range分区表时,Java代码是否需要进行改动
PolarDB产品使用合集涵盖了从创建与管理、数据管理、性能优化与诊断、安全与合规到生态与集成、运维与支持等全方位的功能和服务,旨在帮助企业轻松构建高可用、高性能且易于管理的数据库环境,满足不同业务场景的需求。用户可以通过阿里云控制台、API、SDK等方式便捷地使用这些功能,实现数据库的高效运维与持续优化。
|
5月前
|
存储 安全 Java
详解Java中集合的List接口实现的ArrayList方法 | Set接口实现的HashSet方法
详解Java中集合的List接口实现的ArrayList方法 | Set接口实现的HashSet方法
|
6月前
|
Java API
使用 Java 来实现两个 List 的差集操作
使用 Java 来实现两个 List 的差集操作
190 3
|
5月前
|
存储 Java 索引
Java List接口实现原理与性能评估
Java List接口实现原理与性能评估