赞
踩
STL大体上分为六大组件,分别是:容器、算法、迭代器、仿函数、适配器(配接器)、空间配置器
vector、list、deque、set、map
等,用来存放数据sort、find、copy、for_each
等容器:置物之所也
STL容器就是运用最广泛的一些数据结构实现出来
常用的数据结构:数组、链表、树、栈、队列、集合、映射表等
这些容器分为序列式容器和关联式容器两种:
算法:问题之解法也
有限的步骤,解决逻辑或数学上的问题,这一门学科我们叫做算法
算法分为:质变算法和非质变算法
迭代器:容器和算法之间的胶合剂
提供一种方法,使之能够依序寻访某个容器所含的各个元素,而无需暴露该容器的内部表示方式
每个容器都有自己专属的迭代器,迭代器的使用非常类似于指针
迭代器种类:
种类 | 功能 | 支持算法 |
---|---|---|
输入迭代器 | 对数据的只读访问 | right-aligned 只读,支持++,==,!= |
输出迭代器 | 对数据的只写访问 | 只写,支持++ |
前向迭代器 | 读写操作,并能向前推进迭代器 | 读写,支持++,==,!= |
双向迭代器 | 读写操作,并能向前和向后操作 | 读写,支持++,– |
随机访问迭代器 | 读写操作,可以以跳跃的方式访问任意数据,功能最强的迭代器 | 读写,支持++,–,[n],-n,<,<=,>,>= |
注:常用的容器中迭代器种类为双向迭代器和随机访问迭代器
先介绍STL
中的vector
容器,建立对STL
容器使用的初步认识
#include <iostream> using namespace std; #include <string> #include <vector> #include <algorithm> void myprint(int val) { cout << val << endl; } void test01() { //创建了一个vector容器数组 vector<int> v; //向容器中插入数据 v.push_back(10); v.push_back(20); v.push_back(30); v.push_back(40); //通过迭代器访问容器中的数据 第一种遍历方式 //vector<int>::iterator itBegin = v.begin(); //起始迭代器 指向容器中的第一个元素 //vector<int>::iterator itEnd = v.end(); //结束迭代器 指向容器中最后一个元素的下一个位置 //while (itBegin != itEnd) //{ // cout << *itBegin << endl; // itBegin++; //} 第二种遍历方式 //for (vector<int>::iterator it = v.begin(); it != v.end(); it++) //{ // cout << *it << endl; //} //第三种遍历方式 利用STL提供遍历算法 for_each(v.begin(), v.end(), myprint); } int main() { test01(); system("pause"); return 0; }
运行结果:
#include <iostream> using namespace std; #include <string> #include <vector> #include <algorithm> class Person { public: Person(string name, int age) { this->m_Age = age; this->m_Name = name; } string m_Name; int m_Age; }; void myprint(Person p) { cout <<"姓名:" << p.m_Name <<" 年龄:"<< p.m_Age << endl; } void test01() { //创建了一个vector容器数组 vector<Person> v; Person p1("Tom", 20); Person p2("Bill", 30); Person p3("Jack", 40); Person p4("John", 50); //向容器中插入数据 v.push_back(p1); v.push_back(p2); v.push_back(p3); v.push_back(p4); //通过迭代器访问容器中的数据 第一种遍历方式 //vector<Person>::iterator itBegin = v.begin(); //起始迭代器 指向容器中的第一个元素 //vector<Person>::iterator itEnd = v.end(); //结束迭代器 指向容器中最后一个元素的下一个位置 //while (itBegin != itEnd) //{ // cout <<"姓名:" << (*itBegin).m_Name <<" 年龄:"<< (*itBegin).m_Age << endl; // itBegin++; //} 第二种遍历方式 //for (vector<Person>::iterator it = v.begin(); it != v.end(); it++) //{ // cout << "姓名:" << (*it).m_Name << " 年龄:" << (*it).m_Age << endl; //} //第三种遍历方式 利用STL提供遍历算法 for_each(v.begin(), v.end(), myprint); } int main() { test01(); system("pause"); return 0; }
#include <iostream> using namespace std; #include <string> #include <vector> #include <algorithm> void test01() { vector<vector<int>> v; //创建小容器 vector<int> v1; vector<int> v2; vector<int> v3; //向小容器中添加数据 for (int i = 0; i < 4; i++) { v1.push_back(i + 1); v2.push_back(i + 2); v3.push_back(i + 3); } //小容器放入大容器中 v.push_back(v1); v.push_back(v2); v.push_back(v3); for (vector<vector<int>>::iterator it = v.begin(); it != v.end(); it++) { for (vector<int>::iterator vit = (*it).begin(); vit != (*it).end(); vit++) { cout << *vit << " "; } cout << endl; } } int main() { test01(); system("pause"); return 0; }
运行结果:
注:本文参考b站黑马程序员C++课程
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。