- STL概论
- STL六大组件
- 容器、算法、迭代器、仿函数、适配器、空间配置器
- STL优点
- 内建在C++编译器中,不需要安装额外内容
- 不需要了解具体实现内容,只要熟练运用即可
- 高复用,可移植,高性能
- 容器划分
- 序列式容器
- 关联式容器 有个key起到索引作用
- 算法
- 质变算法
- 非质变算法
- STL初识
- vector容器 vectorv
- vector::iterator itBegin = v.begin(); //v.begin() 起始迭代器,指向容器中第一个数据
- vector::iterator itEnd = v.end(); //v.end();结束迭代器,指向的是容器中最后一个元素的下一个位置
- 利用算法遍历容器
- for_each(v.begin(),v.end() , myPrint ) 头文件 algorithm
- 容器中存放自定义数据类型
- 容器中存放自定义数据类型指针
- 容器嵌套容器
- STL 容器使用时机
#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
using namespace std;
#include <vector>
#include <algorithm> //标准算法头文件
#include <string>
//原生指针也是迭代器
void test01()
{
int arr[5] = { 1, 2, 3, 4, 5 };
int * p = arr;
for (int i = 0; i < 5;i++)
{
//cout << arr[i] << endl;
cout << *(p++) << endl;
}
}
void myPrint(int val)
{
cout << val << endl;
}
void test02()
{
vector<int>v; //创建一个vector容器,容器中存放元素类型是int类型
//插入元素
v.push_back(10);
v.push_back(30);
v.push_back(20);
v.push_back(40);
//遍历元素
vector<int>::iterator itBegin = v.begin(); //v.begin() 起始迭代器,指向容器中第一个数据
vector<int>::iterator itEnd = v.end(); //v.end();结束迭代器,指向的是容器中最后一个元素的下一个位置
//第一种遍历
//while (itBegin!=itEnd)
//{
// cout << *itBegin << endl;
// itBegin++;
//}
//第二种遍历
//for (vector<int>::iterator it = v.begin(); it != v.end(); it++)
//{
// cout << *it << endl;
//}
//第三种遍历,放回调函数,提供接口回调myPrint
for_each(v.begin(), v.end(), myPrint);
}
//自定义数据类型
class Person
{
public:
Person(string name, int age)
{
this->m_Name = name;
this->m_Age = age;
}
string m_Name;
int m_Age;
};
void test03()
{
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++)
{
// *it === Person
cout << "姓名: " << (*it).m_Name << " 年龄: " << it->m_Age << endl;
}
}
//存放自定义数据类型指针
void test04()
{
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++)
{
// *it ---- Person *
cout << "姓名: " << (*it)->m_Name << " 年龄: " << (*it)->m_Age << endl;
}
}
//容器嵌套容器
void test05()
{
vector<vector<int>>v;
vector<int>v1;
vector<int>v2;
vector<int>v3;
for (int i = 0; i < 5; i++)
{
v1.push_back(i + 1);
v2.push_back(i + 10);
v3.push_back(i + 100);
}
//将小容器放入到大容器中
v.push_back(v1);
v.push_back(v2);
v.push_back(v3);
//遍历大容器
for (vector<vector<int>>::iterator it = v.begin(); it != v.end();it++)
{
// *it ==== vector<int>
for (vector<int>::iterator vit = (*it).begin(); vit != (*it).end();vit++)
{
cout << *vit << " ";
}
cout << endl;
}
}
int main(){
//test01();
//test02();
//test03();
//test04();
test05();
system("pause");
return EXIT_SUCCESS;
}