使用C++标准库的算法,需包含头文件<algorithm>
STL算法用于处理一个或多个iterator区间,第一个区间通常以起点和终点表示,其他区间则多数情况下只需提供起点足矣,其终点可以根据第一区间的元素数量推导出来。调用者需保证区间的有效性。STL算法命名时,引入了两种特殊的后缀:
STL算法分类
- 非更易型算法(nomodifying algorithm)
- 更易型算法(modifying algorithm)
- 移除型算法(removing algorithm)
- 变序型算法(mutating algorithm)
- 排序算法(sorting algorithm)
- 已排序区间算法(sorted-range algorithm)
- 数值算法(numeric algothm)
原文地址:https://www.cnblogs.com/larry-xia/p/9497340.html
时间: 2024-10-08 07:02:01