List将元素按顺序储存在链表中. 与 向量(vectors)相比, 它允许快速的插入和删除,但是随机访问却比较慢.
list对象函数
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>
- usingnamespacestd;
- typedeflist<int>LISTINT;
- typedeflist<char>LISTCHAR;
- intmain(void)
- {
- LISTINTlistOne;
- LISTINT::iteratori;
- listOne.push_front(2);
- listOne.push_front(1);
- listOne.push_back(3);
- listOne.push_back(4);
- cout<<"listOne.begin()---listOne.end():"<<endl;
- for(i=listOne.begin();i!=listOne.end();++i)
- cout<<*i<<"";
- cout<<endl;
- LISTINT::reverse_iteratorir;
- cout<<"listOne.rbegin()---listOne.rend():"<<endl;
- for(ir=listOne.rbegin();ir!=listOne.rend();ir++){
- cout<<*ir<<"";
- }
- cout<<endl;
- intresult=accumulate(listOne.begin(),listOne.end(),0);
- cout<<"Sum="<<result<<endl;
- cout<<"------------------"<<endl;
- LISTCHARlistTwo;
- LISTCHAR::iteratorj;
- listTwo.push_front('A');
- listTwo.push_front('B');
- listTwo.push_back('x');
- listTwo.push_back('y');
- cout<<"listTwo.begin()---listTwo.end():"<<endl;
- for(j=listTwo.begin();j!=listTwo.end();++j)
- cout<<char(*j)<<"";
- cout<<endl;
- j=max_element(listTwo.begin(),listTwo.end());
- cout<<"ThemaximumelementinlistTwois:"<<char(*j)<<endl;
- return0;
- }
vector相关用法
vector的初始化大小和赋初值
(1)vector< 类型 > 标识符 ;
(2)vector< 类型 > 标识符(最大容量) ;
(3)vector< 类型 > 标识符(最大容量,初始所有值);
vector< int > arry(5, 1);
注:定义一个大小为5的数组,并将每个值都赋为1;
int i;
for( i = 0; i < 5; i ++ )
cout << arry[i] << " ";
输出结果为:1 1 1 1 1
同理定义其他类型的:
vector<char> arry(3, '*');
定义二维的vector:
vector< vector <int>> Arry(10, vector<int>(0));
使用数组对C++ Vector进行初始化
int i[10] ={1,2,3,4,5,6,7,78,8} ;
///第一种
vector<int> vi(i+1,i+3); ///从第2个元素到第三个元素
for(vector <int>::interator it = vi.begin() ;
it != vi.end() ; it++)
{
cout << *it <<" " ;
}
vector 的数据的存入和输出:
- #include<iostream>
- #include<vector>
- #include<algorithm>
- #include<cstdlib>
- usingnamespacestd;
- intmain(void)
- {
- vector<int>num;
- intelement;
- while(cin>>element)
- num.push_back(element);
- sort(vi.begin(),vi.end());
- reverse(vi.begin(),vi.end())
- for(inti=0;i<num.size();i++)
- cout<<num[i]<<"\n";
- system("pause");
- return0;
- }
对于二维vector的定义。
1)定义一个10个vector元素,并对每个vector符值1-10。
- #include<stdio.h>
- #include<vector>
- #include<iostream>
- usingnamespacestd;
- intmain()
- {
- inti=0,j=0;
- 所以每一行的长度是可以变化的。之所以用到vector<int>(0)是对vector初始化,否则不能对vector存入元素。
- vector<vector<int>>Array(10,vector<int>(0));
- for(j=0;j<10;j++)
- {
- for(i=0;i<9;i++)
- {
- Array[j].push_back(i);
- }
- }
- for(j=0;j<10;j++)
- {
- for(i=0;i<Array[j].size();i++)
- {
- cout<<Array[j][i]<<"";
- }
- cout<<endl;
- }
- }
定义一个行列都是变化的数组。
- #include<stdio.h>
- #include<vector>
- #include<iostream>
- usingnamespacestd;
- voidmain()
- {
- inti=0,j=0;
- vector<vector<int>>Array;
- vector<int>line;
- for(j=0;j<10;j++)
- {
- Array.push_back(line);
- for(i=0;i<9;i++)
- {
- Array[j].push_back(i);
- }
- }
- for(j=0;j<10;j++)
- {
- for(i=0;i<Array[j].size();i++)
- {
- cout<<Array[j][i]<<"";
- }
- cout<<endl;
- <spanstyle="white-space:pre"></span>return0;
- }
- }
使 用 vettor erase 指定元素
- #include<iostream>
- #include<vector>
- usingnamespacestd;
- intmain()
- {
- vector<int>arr;
- arr.push_back(6);
- arr.push_back(8);
- arr.push_back(3);
- arr.push_back(8);
- for(vector<int>::iteratorit=arr.begin();it!=arr.end();)
- {
- if(*it==8)
- {
- it=arr.erase(it);
- }
- else
- {
- ++it;
- }
- }
- cout<<"Afterremove8:\n";
- for(vector<int>::iteratorit=arr.begin();it<arr.end();++it)
- {
- cout<<*it<<"";
- }
- cout<<endl;
- return0;
- }
附:
1.push_back 在数组的最后添加一个数据
2.pop_back 去掉数组的最后一个数据
3.at 得到编号位置的数据
4.begin 得到数组头的指针
5.end 得到数组的最后一个单元+1的指针
6.front 得到数组头的引用
7.back 得到数组的最后一个单元的引用
8.max_size 得到vector最大可以是多大
9.capacity 当前vector分配的大小
10.size 当前使用数据的大小
11.resize 改变当前使用数据的大小,如果它比当前使用的大,者填充默认值
v.resize(2*v.size, 99) 将v的容量翻倍(并把新元素的值初始化为99)
12.reserve 改变当前vecotr所分配空间的大小
13.erase 删除指针指向的数据项
14.clear 清空当前的vector
15.rbegin 将vector反转后的开始指针返回(其实就是原来的end-1)
16.rend 将vector反转构的结束指针返回(其实就是原来的begin-1)
17.empty 判断vector是否为空
18.swap 与另一个vector交换数据
map用法
1、map简介
map是一类关联式容器。它的特点是增加和删除节点对迭代器的影响很小,除了那个操作节点,对其他的节点都没有什么影响。对于迭代器来说,可以修改实值,而不能修改key。
2、map的功能
自动建立Key - value的对应。key 和 value可以是任意你需要的类型。
根据key值快速查找记录,查找的复杂度基本是Log(N),如果有1000个记录,最多查找10次,1,000,000个记录,最多查找20次。
快速插入Key - Value 记录。
快速删除记录
根据Key 修改value记录。
遍历所有记录。
3、使用map
使用map得包含map类所在的头文件
#include <map> //注意,STL头文件没有扩展名.h
map对象是模板类,需要关键字和存储对象两个模板参数:
std:map<int, string> personnel;
这样就定义了一个用int作为索引,并拥有相关联的指向string的指针.
为了使用方便,可以对模板类进行一下类型定义,
typedef map<int, CString> UDT_MAP_INT_CSTRING;
UDT_MAP_INT_CSTRING enumMap;
4、在map中插入元素
改变map中的条目非常简单,因为map类已经对[]操作符进行了重载
enumMap[1] = "One";
enumMap[2] = "Two";
.....
这样非常直观,但存在一个性能的问题。插入2时,先在enumMap中查找主键为2的项,没发现,然后将一个新的对象插入enumMap,键是2,值是一个空字符串,插入完成后,将字符串赋为"Two"; 该方法会将每个值都赋为缺省值,然后再赋为显示的值,如果元素是类对象,则开销比较大。我们可以用以下方法来避免开销:
enumMap.insert(map<int, CString> :: value_type(2, "Two"))
5、查找并获取map中的元素
下标操作符给出了获得一个值的最简单方法:
CString tmp = enumMap[2];
但是,只有当map中有这个键的实例时才对,否则会自动插入一个实例,值为初始化值。
我们可以使用Find()和Count()方法来发现一个键是否存在。
查找map中是否包含某个关键字条目用find()方法,传入的参数是要查找的key,在这里需要提到的是begin()和end()两个成员,分别代表map对象中第一个条目和最后一个条目,这两个数据的类型是iterator.
int nFindKey = 2; //要查找的Key
//定义一个条目变量(实际是指针)
UDT_MAP_INT_CSTRING::iterator it= enumMap.find(nFindKey);
if(it == enumMap.end()) {
//没找到
}
else {
//找到
}
通过map对象的方法获取的iterator数据类型是一个std::pair对象,包括两个数据 iterator->first 和 iterator->second 分别代表关键字和存储的数据
6、从map中删除元素
移除某个map中某个条目用erase()
该成员方法的定义如下
iterator erase(iterator it); //通过一个条目对象删除
iterator erase(iterator first, iterator last); //删除一个范围
size_type erase(const Key& key); //通过关键字删除
clear()就相当于 enumMap.erase(enumMap.begin(), enumMap.end());
C++ STL map的使用
以下是对C++中STL map的插入,查找,遍历及删除的例子:
- #include<map>
- #include<string>
- #include<iostream>
- usingnamespacestd;
- voidmap_insert(map<string,string>*mapStudent,stringindex,stringx)
- {
- mapStudent->insert(map<string,string>::value_type(index,x));
- }
- intmain(intargc,char**argv)
- {
- chartmp[32]="";
- map<string,string>mapS;
- map_insert(&mapS,"192.168.0.128","xiong");
- map_insert(&mapS,"192.168.200.3","feng");
- map_insert(&mapS,"192.168.200.33","xiongfeng");
- map<string,string>::iteratoriter;
- cout<<"WeHaveThirdElement:"<<endl;
- cout<<"-----------------------------"<<endl;
- iter=mapS.find("192.168.0.33");
- if(iter!=mapS.end()){
- cout<<"findtheelememt"<<endl;
- cout<<"Itis:"<<iter->second<<endl;
- }else{
- cout<<"notfindtheelement"<<endl;
- }
- for(iter=mapS.begin();iter!=mapS.end();iter){
- cout<<"|"<<iter->first<<"|"<<iter->
- second<<"|"<<endl;
- }
- cout<<"-----------------------------"<<endl;
- map_insert(&mapS,"192.168.30.23","xf");
- cout<<"AfterWeInsertOneElement:"<<endl;
- cout<<"-----------------------------"<<endl;
- for(iter=mapS.begin();iter!=mapS.end();iter){
- cout<<"|"<<iter->first<<"|"<<iter->
- second<<"|"<<endl;
- }
- cout<<"-----------------------------"<<endl;
- iter=mapS.find("192.168.200.33");
- if(iter!=mapS.end()){
- cout<<"findtheelement:"<<iter->first<<endl;
- cout<<"deleteelement:"<<iter->first<<endl;
- cout<<"================================="<<endl;
- mapS.erase(iter);
- }else{
- cout<<"notfindtheelement"<<endl;
- }
- for(iter=mapS.begin();iter!=mapS.end();iter){
- cout<<"|"<<iter->first<<"|"<<iter->
- second<<"|"<<endl;
- }
- cout<<"================================="<<endl;
- return0;
- }
本文参考:
http://blog.csdn.net/lyn_bigdream/article/details/6601510
http://blog.sina.com.cn/s/blog_63a1163f0100jxr9.html
http://wmnmtm.blog.163.com/blog/static/38245714201072310131130/
分享到:
相关推荐
在C++编程中,STL(Standard Template Library,标准模板库)是一个不可或缺的部分,它提供了高效、可重用和模块化的代码实现。STL的核心组件包括容器、迭代器、算法和函数对象。在这个主题中,我们将深入探讨四个...
C++标准库还包括一系列的容器类,它们在、<forward_list>、<list>、<map>、、、、<vector>等头文件中定义。这些容器类型支持数据的存储和管理,提供了丰富的成员函数和运算符重载来操作元素。 异常处理也是C++标准...
C++ STL,全称为Standard Template Library(标准模板库),是C++编程语言中的一部分,它提供了高效、便捷的数据结构和算法。STL的核心组件包括容器(containers)、迭代器(iterators)、函数对象(functors)和...
总之,C++标准库是学习和使用C++语言不可或缺的一部分。通过深入了解并熟练运用标准库中的各种组件,开发者可以更加高效地解决问题,提高程序的质量和性能。希望本文能够帮助读者更好地理解和掌握C++标准库的相关...
此外,C++标准库还包括了基本类型转换(如`<charconv>`)、容器(如`<deque>`、`<forward_list>`、`<map>`、`<set>`、`<stack>`、`<queue>`、`<unordered_map>`、`<unordered_set>`等)、迭代器、智能指针(如`...
《C++标准库(第二版)》是一本深入解析C++11标准库的重要书籍,由侯捷翻译,于2015年6月出版。这本书对于想要掌握C++11新特性的开发者来说,是一份极具价值的学习资料。书中详细介绍了C++11中的STL(Standard ...
STL是C++标准库的核心部分,包括容器(如vector、list、set等)、算法、迭代器和函数对象等。书中会详细介绍: 1. 容器的使用和操作:了解各种容器的特点,如何插入、删除元素,以及容器间的转换。 2. 迭代器:作为...
STL是C++的一个核心特性,它提供了一组模板类和函数,包括向量(std::vector)、列表(std::list)、映射(std::map)、集合(std::set)等容器,以及算法(如排序、查找)和迭代器,这些都极大地提高了代码的可读性...
在C++标准库中,模板被广泛应用于STL(Standard Template Library,标准模板库),其中包括了各种容器如vector、map、multimap、set和multiset。这些容器都是模板类,它们提供了高效的数据组织和操作方式。 1. **...
C++标准库是C++编程的基础,它提供了丰富的类和函数,如STL(Standard Template Library)中的向量(vector)、列表(list)、映射(map)等容器,以及算法(algorithm)头文件中的一系列操作,如排序、查找等。C++...
C++标准库中的容器包括向量(`std::vector`)、列表(`std::list`)、映射(`std::map`)、集合(`std::set`)等。这些容器可以存储、管理和操作各种类型的数据。例如,`std::vector`是一种动态数组,可以自动调整...
### C++标准库容器总结 #### 一、概述 C++标准库是C++语言的核心组成部分之一,提供了大量的模板类和函数,用于处理常见的编程任务。其中,容器是一组非常重要的组件,它们允许程序员以高效的方式存储和操作数据。...
STL包括了如向量(vector)、列表(list)、映射(map)、集合(set)等容器,还有算法(algorithms)、迭代器(iterators)等工具。 描述中提到的"下载后,解压,将文件拷贝到/lib或者/usr/lib目录下",这是在解决...
1. **STL(Standard Template Library)**:这是C++库中最核心的部分,包括了容器(如vector、list、set、map等)、算法(如排序、查找、变换等)和迭代器(用于遍历容器)。STL通过模板机制实现了高效的代码复用,...
C++标准库是C++编程语言的核心组成部分,它提供了丰富的功能,包括容器(如vector、list、map等)、算法(如排序、查找、变换等)、迭代器、智能指针、异常处理、输入/输出流、字符串处理、时间日期操作、多线程支持...
c++容器list、vector、map、set区别 list 封装链表,以链表形式实现,不支持[]运算符。 对随机访问的速度很慢(需要遍历整个链表),插入数据很快(不需要拷贝和移动数据,只需改变指针的指向)。 新添加的元素,...
2. **容器库**:如`<vector>`,`<list>`,`<set>`,`<map>`等,它们是C++中的动态数据结构。`vector`是动态数组,`list`是双向链表,`set`和`map`是自平衡二叉查找树,分别存储唯一元素和键值对。 3. **算法库**:...
STL包含四大核心部分:容器(如vector、list、set、map等)、迭代器(用于遍历容器中的元素)、算法(如排序、查找等)以及函数对象(或称谓谓词,如比较函数)。这些基础组件的深入理解对于有效利用库功能至关重要...
总的来说,"c++标准库参考"和"widget使用手册"是C++开发者的重要参考资料,它们涵盖了语言标准库的使用和GUI编程的基础知识,能够帮助开发者提高编程效率,创建出功能丰富、用户体验良好的应用。深入学习并熟练运用...