2.1 STL 的诞生
- 长久以来,软件界一直希望建立—种可重复利用的东西
- C++的面向对象和泛型编程思想,目的就是复用性的提升
- 大多情况下,数据结构和算法都未能有一套标准,导致被迫从事大量重复工作
- 为了建立数据结构和算法的一套标准,诞生了STL
2.2 STL 基本概念
- STL(Standard Template Library,标准模板库)
- STL从广义上分为:容器(container)算法(algorithm)迭代器(iterator)。
- 容器和算法之间通过迭代器进行无缝连接。
- STL几乎所有的代码都采用了模板类或者模板函数
2.3 STL 六大组件
STL大体分为六大组件,分别是:容器、算法、迭代器、仿函数、适配器(配接器)、空间配置器
- 1.容器:各种数据结构,如vector、list、deque、set、map等,用来存放数据。
- 2.算法:各种常用的算法,如sort、find、copy、for_each等
- 3.迭代器:扮演了容器与算法之间的胶合剂。
- 4.仿函数:行为类似函数,可作为算法的某种策略。
- 5.适配器:一种用来修饰容器或者仿函数或迭代器接口的东西。
- 6.空间配置器:负责空间的配置与管理。
2.4 STL 中容器、算法、迭代器
2.5 容器算法迭代器初识
STL中最常用的容器为Vector,可以理解为数组,下面我们将学习如何向这个容器中插入数据、并遍历这个容器
2.5.1 vector 存放内置数据类型
容器:vector 算法:for_each 迭代器:vector<int>::iterator
遍历容器中的数据——第一种方式
# include<iostream>
# include<vector>
using namespace std;
void test01()
{
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++;
}
}
int main()
{
test01();
system("pause");
return 0;
}
遍历容器中的数据——第二种方式
# include<iostream>
# include<vector>
using namespace std;
void test01()
{
vector<int> v;
v.push_back(10);
v.push_back(20);
v.push_back(30);
v.push_back(40);
for (vector<int>::iterator it = v.begin(); it != v.end(); it++)
{
cout << *it << endl;
}
}
int main()
{
test01();
system("pause");
return 0;
}
遍历容器中的数据——第三种方式
# include<iostream>
# include<vector>
# include<algorithm>
using namespace std;
void myPrint(int val)
{
cout << val << endl;
}
void test01()
{
vector<int> v;
v.push_back(10);
v.push_back(20);
v.push_back(30);
v.push_back(40);
for_each(v.begin(), v.end(), myPrint);
}
int main()
{
test01();
system("pause");
return 0;
}
2.5.2 Vector 存放自定义数据类型
vector 中存放自定义数据类型
# include<iostream>
# include<string>
# include<vector>
using namespace std;
class Person
{
public:
Person(string name, int age)
{
this->m_Name = name;
this->m_Age = age;
}
string m_Name;
int m_Age;
};
void test01()
{
vector<Person>v;
Person p1("aaa", 10);
Person p2("bbb", 20);
Person p3("ccc", 30);
Person p4("ddd", 40);
Person p5("eee", 50);
v.push_back(p1);
v.push_back(p2);
v.push_back(p3);
v.push_back(p4);
v.push_back(p5);
for (vector<Person>::iterator it = v.begin(); it != v.end(); it++)
{
cout << "姓名:" << (*it).m_Name << " 年龄:" << (*it).m_Age << endl;
}
}
int main()
{
test01();
system("pause");
}
vector 中存放自定义数据类型的指针
# include<iostream>
# include<string>
# include<vector>
using namespace std;
class Person
{
public:
Person(string name, int age)
{
this->m_Name = name;
this->m_Age = age;
}
string m_Name;
int m_Age;
};
void test02()
{
vector<Person*>v;
Person p1("aaa", 10);
Person p2("bbb", 20);
Person p3("ccc", 30);
Person p4("ddd", 40);
Person p5("eee", 50);
v.push_back(&p1);
v.push_back(&p2);
v.push_back(&p3);
v.push_back(&p4);
v.push_back(&p5);
for (vector<Person*>::iterator it = v.begin(); it != v.end(); it++)
{
cout << "姓名:" << (*it)->m_Name << " 年龄:" << (*it)->m_Age << endl;
}
}
int main()
{
test02();
system("pause");
}
2.5.3 Vector 容器嵌套容器
学习目标:容器中嵌套容器,并将所有数据进行遍历输出
# include<iostream>
# include<vector>
using namespace std;
void test01()
{
vector<vector<int>>v;
vector<int>v1;
vector<int>v2;
vector<int>v3;
vector<int>v4;
vector<int>v5;
for (int i = 0; i < 4; i++)
{
v1.push_back(i + 1);
v2.push_back(i + 2);
v3.push_back(i + 3);
v4.push_back(i + 4);
v5.push_back(i + 5);
}
v.push_back(v1);
v.push_back(v2);
v.push_back(v3);
v.push_back(v4);
v.push_back(v5);
for (vector<vector<int>>::iterator it = v.begin(); it != v.end(); it++)
{
for (vector<int>::iterator itit = (*it).begin(); itit != (*it).end(); itit++)
{
cout << *itit << " ";
}
cout << endl;
}
}
int main()
{
test01();
system("pause");
return 0;
}
|