03.初识STL
2023-12-13 12:05:54
3、初识STL
- STL(Standard Template Library,标准模板库)
- STL从广义上分为:容器(container)、算法(algorithm)、迭代器(iterator)
- 容器和算法之间通过迭代器进行无缝连接
- STL 几乎所有的代码都采用了模板类或者模板函数
STL六大组件:
容器、算法、迭代器、仿函数、适配器(配接器)、空间置配器
- 容器:各种数据结构,如 vector、list、deque、set、map 等,用来存放数据
- 算法:各种常用算法,如 sort、find、copy、for_each 等
- 迭代器:扮演了容器与算法之间的胶合剂
- 仿函数:行为类似函数,可作为算法的某种策略。
- 适配器:一种用来修饰容器或者仿函数或迭代器接口的东西。
- 空间置配器:负责空间的配置与管理
3.1 vector 存放内置数据类型
- 容器:
vector
- 算法:
for_each
- 迭代器:
vector<int>::iterator
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
void printVal(int val) {
cout << val << " ";
}
void test01() {
// 创建 vector 容器对象,并且通过模板参数指定容器中存放的数据的类型
vector<int> v;
// 向容器中放数据
v.push_back(10);
v.push_back(20);
v.push_back(30);
v.push_back(40);
v.push_back(50);
// 每一个容器都有自己的迭代器,迭代器是用来遍历容器中的元素
// v.begin() 返回迭代器,这个迭代器指向容器中第一个数据
// v.end() 返回迭代器,这个迭代器指向容器元素的最后一个元素的下一个位置
// vector<int>::iterator 拿到 vector<int> 这种容器的迭代器类型
vector<int>::iterator itbegin = v.begin();
vector<int>::iterator itend = v.end();
// 第一种遍历方式:
cout << "while循环遍历方式:";
while (itbegin != itend) {
cout << *itbegin << " ";
itbegin++;
}
cout << endl;
// 第二种遍历方式:
cout << "for循环遍历方式:";
for (vector<int>::iterator it = v.begin(); it != v.end(); ++it) {
cout << *it << " ";
}
cout << endl;
// 第三种遍历方式:
// 使用STL提供标准遍历算法 头文件 algorithm
cout << "使用 STL 提供的遍历算法 for_each:";
for_each(v.begin(), v.end(), printVal);
cout << endl;
}
int main() {
test01();
system("pause");
return 0;
}
3.2 vector 存放自定义数据类型
#include <iostream>
#include <vector>
#include <string>
using namespace std;
class Person {
public:
Person(string name,int age){
m_name = name;
m_age = age;
}
public:
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;
}
cout << "----------------------" << endl;
}
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) {
Person* p = (*it);
cout << "姓名:" << p->m_name << " 年龄:" << p->m_age << endl;
}
}
int main() {
test01();
test02();
system("pause");
return 0;
}
3.3 vector容器嵌套容器
#include <iostream>
#include <vector>
#include <string>
using namespace std;
void test01() {
vector<vector<int>>v;
vector<int>v1;
vector<int>v2;
vector<int>v3;
vector<int>v4;
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);
}
v.push_back(v1);
v.push_back(v2);
v.push_back(v3);
v.push_back(v4);
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;
}
文章来源:https://blog.csdn.net/m0_53485135/article/details/134965438
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!