文章目录
一、STL
- 标准模板库(Standard Template Library,简称STL)定义了一套概念体系,为泛型程序设计提供了逻辑基础
- STL中的各个类模板、函数模板的参数都是用这个体系中的概念来规定的。
- 使用STL的模板时,类型参数既可以是C++标准库中已有的类型,也可以是自定义的类型——只要这些类型是所要求概念的模型。
组件 | 描述 |
---|---|
容器(Containers) | 容器是用来管理某一类对象的集合。C++ 提供了各种不同类型的容器,比如 deque、list、vector、map 等。 |
算法(Algorithms) | 算法作用于容器。它们提供了执行各种操作的方式,包括对容器内容执行初始化、排序、搜索和转换等操作。 |
迭代器(iterators) | 迭代器用于遍历对象集合的元素。这些集合可能是容器,也可能是容器的子集。 |
二、STL应用
2.1 结合容器和迭代器解决序列变换(如取反、平方、立方)
代码:
#include <iostream>
#include <vector>
using namespace std;
// 取反
template<typename T>
class negatation {
public:
T operator()(T input)
{
return -input;
}
};
// 平方
template<typename T>
class square {
public:
T operator()(T input)
{
return pow(input, 2);
}
};
// 立方
template<typename T>
class cubic {
public:
T operator()(T input)
{
return pow(input, 3);
}
};
// 遍历序列并进行相应的操作
template<typename input, class function>
void traverse(input first, input last, ostream& os, function op)
{
for (; first != last; ++first)
os << op(*first) << " ";
}
int main() {
const int N = 5;
vector<int> s(N);
for (<