博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++ 标准库之algorithm
阅读量:6707 次
发布时间:2019-06-25

本文共 4128 字,大约阅读时间需要 13 分钟。

The header <algorithm> defines a collection of functions especially designed to be used on ranges of elements.

A range is any sequence of objects that can be accessed through iterators or pointers, such as an array or an instance of some of the  . Notice though, that algorithms operate through iterators directly on the values, not affecting in any way the structure of any possible container (it never affects the size or storage allocation of the container).

Functions in <algorithm>

Non-modifying sequence operations :

Modifying sequence operations :

Sorting :

Binary search (operating on sorted ranges):

Merge (operating on sorted ranges):

Heap :

Min/max :

 
原载地址:

转载于:https://www.cnblogs.com/zhongwh/archive/2012/01/19/2326060.html

你可能感兴趣的文章
tree
查看>>
4.01 插入新记录
查看>>
Git ignore UserInterfaceState.xcuserstate
查看>>
爬取360摄影美图
查看>>
追女生送什么礼物好,要大全啊大全啊!
查看>>
参考文献人名缩写问题
查看>>
《Unix环境高级编程》读书笔记 第3章-文件I/O
查看>>
LeetCode – Refresh – LRU
查看>>
C# WEB代理
查看>>
Java之线程(0) - 序
查看>>
Manacher算法 - 求最长回文串的利器
查看>>
字符串操作函数的几个基本函数
查看>>
MFC窗口的拆分
查看>>
坐在马桶上看算法:Dijkstra最短路算法
查看>>
C语言第一次博客作业 陈张鑫
查看>>
mysql数据库中导入txt文本数据的方法
查看>>
Spring注解与Java元注解小结
查看>>
存储过程:项目中使用存储过程的一个实例
查看>>
Code Lock 并查集&&二分求幂
查看>>
mysql 学习
查看>>