当前位置: 首页 > news >正文

c++标准库中,含有链表的类list

Lists将元素按顺序储存在链表中. 与 向量(vectors)相比, 它允许快速的插入和删除,但是随机访问却比较慢.

STL中 end()指向的总是无效值,取值都用迭代器,用法跟指针差不多。

assign() 给list赋值 

back() 返回最后一个元素 

begin() 返回指向第一个元素的迭代器 

clear() 删除所有元素 

empty() 如果list是空的则返回true 

end() 返回末尾的迭代器 

erase() 删除一个元素 

front() 返回第一个元素 

get_allocator() 返回list的配置器 

insert() 插入一个元素到list中 

max_size() 返回list能容纳的最大元素数量 

merge() 合并两个list 

pop_back() 删除最后一个元素 

pop_front() 删除第一个元素 

push_back() 在list的末尾添加一个元素 

push_front() 在list的头部添加一个元素 

rbegin() 返回指向第一个元素的逆向迭代器 

remove() 从list删除元素 

remove_if() 按指定条件删除元素 

rend() 指向list末尾的逆向迭代器 

resize() 改变list的大小 

reverse() 把list的元素倒转 

size() 返回list中的元素个数 

sort() 给list排序 

splice() 合并两个list 

swap() 交换两个list 

unique() 删除list中重复的元素

附List用法实例:

#include <iostream>

#include <list>

#include <numeric>

#include <algorithm>

using namespace std;

//创建一个list容器的实例LISTINT

typedef list<int> LISTINT;

//创建一个list容器的实例LISTCHAR

typedef list<char> LISTCHAR;

void main(void)

{

    //--------------------------

    //用list容器处理整型数据

    //--------------------------

    //用LISTINT创建一个名为listOne的list对象

    LISTINT listOne;

    //声明i为迭代器

    LISTINT::iterator i;

    //从前面向listOne容器中添加数据

    listOne.push_front (2);

    listOne.push_front (1);

    //从后面向listOne容器中添加数据

    listOne.push_back (3);

    listOne.push_back (4);

//从前向后显示listOne中的数据

    cout<<"listOne.begin()--- listOne.end():"<<endl;

    for (i = listOne.begin(); i != listOne.end(); ++i)

        cout << *i << " ";

    cout << endl;

//输出为 1 2 3 4

//从后向后显示listOne中的数据

LISTINT::reverse_iterator ir;

    cout<<"listOne.rbegin()---listOne.rend():"<<endl;

    for (ir =listOne.rbegin(); ir!=listOne.rend();ir++) {

        cout << *ir << " ";

    }

    cout << endl;

//输出为 4 3 2 1

//使用STL的accumulate(累加)算法

    int result = accumulate(listOne.begin(), listOne.end(),0);

    cout<<"Sum="<<result<<endl;

    cout<<"------------------"<<endl;

//输出为 Sum=10

    //--------------------------

    //用list容器处理字符型数据

    //--------------------------

    //用LISTCHAR创建一个名为listOne的list对象

    LISTCHAR listTwo;

    //声明i为迭代器

    LISTCHAR::iterator j;

    //从前面向listTwo容器中添加数据

    listTwo.push_front ('A');

    listTwo.push_front ('B');

    //从后面向listTwo容器中添加数据

    listTwo.push_back ('x');

    listTwo.push_back ('y');

//从前向后显示listTwo中的数据

    cout<<"listTwo.begin()---listTwo.end():"<<endl;

    for (j = listTwo.begin(); j != listTwo.end(); ++j)

        cout << char(*j) << " ";

    cout << endl;

//输出为 B A x y

//使用STL的max_element算法求listTwo中的最大元素并显示

    j=max_element(listTwo.begin(),listTwo.end());

    cout << "The maximum element in listTwo is: "<<char(*j)<<endl;

}

//输出为: The maximum element in listTwo is: y

#include <iostream>

#include <list>

using namespace std;

typedef list<int> 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;   

                                        //list2对象最初有10个值为6的元素 

    INTLIST list2(10,6); 

                                        //list3对象最初有9个值为6的元素 

    INTLIST list3(list2.begin(),--list2.end()); 

    //声明一个名为i的双向迭代器

    INTLIST::iterator i;

//从前向后显示各list对象的元素

    put_list(list1,"list1");

    put_list(list2,"list2");

    put_list(list3,"list3");

    

// 输出: 空行一行;10个6一行;9个6一行。

//从list1序列后面添加两个元素

list1.push_back(2);

list1.push_back(4);

cout<<"list1.push_back(2) and list1.push_back(4):"<<endl;

    put_list(list1,"list1");

//输出 2 4

//从list1序列前面添加两个元素

list1.push_front(5);

list1.push_front(7);

cout<<"list1.push_front(5) and list1.push_front(7):"<<endl;

    put_list(list1,"list1");

//输出 7 5 2 4

//在list1序列中间插入数据

list1.insert(++list1.begin(),3,9);

cout<<"list1.insert(list1.begin()+1,3,9):"<<endl;

    put_list(list1,"list1");

//输出 7 9 9 9 5 2 4

//测试引用类函数

cout<<"list1.front()="<<list1.front()<<endl;   //输出 7

cout<<"list1.back()="<<list1.back()<<endl;  //输出 4

//从list1序列的前后各移去一个元素

list1.pop_front();

list1.pop_back();

cout<<"list1.pop_front() and list1.pop_back():"<<endl;

    put_list(list1,"list1");

//输出 9 9 9 5 2

//清除list1中的第2个元素

list1.erase(++list1.begin());

cout<<"list1.erase(++list1.begin()):"<<endl;

    put_list(list1,"list1");

//输出 9 9 5 2

//对list2赋值并显示

list2.assign(8,1);

cout<<"list2.assign(8,1):"<<endl;

    put_list(list2,"list2");

//输出 1 1 1 1 1 1 1 1 【八个1】

//显示序列的状态信息

cout<<"list1.max_size(): "<<list1.max_size()<<endl;   //输出 1073741823

cout<<"list1.size(): "<<list1.size()<<endl;       //输出 4

cout<<"list1.empty(): "<<list1.empty()<<endl;   //输出 0

//list序列容器的运算

    put_list(list1,"list1");  //输出 9 9 5 2

    put_list(list3,"list3");  //输出  9 9 9 9 9 9 9 9 9 【9个9】

cout<<"list1>list3: "<<(list1>list3)<<endl;  //输出 1

cout<<"list1<list3: "<<(list1<list3)<<endl;  //输出 0

//对list1容器排序

list1.sort();

    put_list(list1,"list1");  

//输出 2 5 9 9

    

//结合处理

list1.splice(++list1.begin(), list3);

    put_list(list1,"list1");  //输出 2 6 6 6 6 6 6 6 6 6 5 9 9【在2后面插入list3】

    put_list(list3,"list3");  //输出 空行

} 

补充:STL标准函数find进行vector 、list链表查找

#include <vector>

#include <algorithm>

#include <iostream>

using namespace std;

class example

{

public:

    example(int val)

    {

      i = val;

    }

bool operator==(example const & rhs)

{

   return (i == rhs.i) ? true : false;

}

private:

int i;

};

int main(void)

{

   vector<example> ve;

   ve.push_back(1);  //若这里为压入2,则程序运行就会奔溃,因为迭代器指针it未指向任何有 //效的地址!!!

   vector<example>::iterator it;

   example elem(1);    //定义类对象elem

   it = find(ve.begin(), ve.end(), elem);

   cout<<boolalpha<<(*it == elem);  //输出 true

}

#include <list>

#include <vector>

#include <algorithm>

#include <iostream>

using namespace std;

typedef list<int> LISTINT;

int main(void)

{

 int a[5] = {1,5,3,5,6};

 LISTINT ls1;

 ls1.assign(a,a+5);

 LISTINT::iterator it;

 for( it=ls1.begin(); it!=ls1.end(); it++)

  cout<<*it<<" ";

 cout<<endl;

//输出 1 5 3 5 6

 ls1.insert( ls1.end(), 4 );

 for( it=ls1.begin(); it!=ls1.end(); it++)

  cout<<*it<<" ";

 cout<<endl;

//输出 1 5 3 5 6 4

 ls1.remove( 5 );

 for( it=ls1.begin(); it!=ls1.end(); it++)

  cout<<*it<<" ";

 cout<<endl;

}

//输出 1 3 6 4 【5元素全部被删除了】

/* 输出如下

1 5 3 5 6

1 5 3 5 6 4

1 3 6 4

*/

 

相关文章:

  • 幸福框架:可扩展的应用程序 “启动引导” 框架
  • Java多线程设计模式(5)Future模式
  • 【算法】海量数据处理:有一千万条短信,有重复,以文本形式保存,一行一条,找出重复最少的前10条...
  • hdu 3631(floyd思想的运用)
  • 用MDT 2012为企业部署windows 7(七)--创建标准操作系统部署任务序列
  • 自动化运维之 Kerberos 账号信息管理平台
  • POJ 1226 Substrings 解题报告
  • 集合元素并查集
  • PostgreSQL的总体架构
  • Web 应用程序项目 XXXX 已配置为使用 IIS。 无法访问 IIS 元数据库。您没有足够的特权访问计算机上的 IIS 网站。...
  • 030、 Linux 查看CPU信息、机器型号等硬件信息
  • 用Shell脚本监控服务器并发邮件报警
  • HANA学习笔记1-搭建HANA学习环境
  • linux何检查一个目录是否为空目录
  • 网站安全那些事
  • [iOS]Core Data浅析一 -- 启用Core Data
  • 11111111
  • docker python 配置
  • HTML-表单
  • js写一个简单的选项卡
  • js作用域和this的理解
  • mongodb--安装和初步使用教程
  • Mybatis初体验
  • Redis 懒删除(lazy free)简史
  • RedisSerializer之JdkSerializationRedisSerializer分析
  • Sublime text 3 3103 注册码
  • ⭐ Unity 开发bug —— 打包后shader失效或者bug (我这里用Shader做两张图片的合并发现了问题)
  • 百度小程序遇到的问题
  • 翻译 | 老司机带你秒懂内存管理 - 第一部(共三部)
  • 服务器之间,相同帐号,实现免密钥登录
  • 技术攻略】php设计模式(一):简介及创建型模式
  • 容器化应用: 在阿里云搭建多节点 Openshift 集群
  • 如何使用 JavaScript 解析 URL
  • FaaS 的简单实践
  • MPAndroidChart 教程:Y轴 YAxis
  • ​TypeScript都不会用,也敢说会前端?
  • #vue3 实现前端下载excel文件模板功能
  • $.ajax()参数及用法
  • %check_box% in rails :coditions={:has_many , :through}
  • (03)光刻——半导体电路的绘制
  • (cos^2 X)的定积分,求积分 ∫sin^2(x) dx
  • (Git) gitignore基础使用
  • (NO.00004)iOS实现打砖块游戏(九):游戏中小球与反弹棒的碰撞
  • (顶刊)一个基于分类代理模型的超多目标优化算法
  • (附源码)ssm捐赠救助系统 毕业设计 060945
  • (机器学习-深度学习快速入门)第一章第一节:Python环境和数据分析
  • (牛客腾讯思维编程题)编码编码分组打印下标题目分析
  • (转)菜鸟学数据库(三)——存储过程
  • (转)详解PHP处理密码的几种方式
  • .naturalWidth 和naturalHeight属性,
  • .NET 8 中引入新的 IHostedLifecycleService 接口 实现定时任务
  • .NET CLR Hosting 简介
  • .net MVC中使用angularJs刷新页面数据列表
  • .NET 回调、接口回调、 委托
  • .net 桌面开发 运行一阵子就自动关闭_聊城旋转门家用价格大约是多少,全自动旋转门,期待合作...