求c++的内置函数

来源:百度知道 编辑:UC知道 时间:2024/05/25 11:34:17
求c++的内置函数及其用法
如:sort
有的加分,每个10分
帮帮忙
epmhm,我说的是内置函数,不是内联函数。
vbtraz,能用中文吗?

adjacent_find
Searches for two adjacent elements that are either equal or satisfy a specified condition.

binary_search
Tests whether there is an element in a sorted range that is equal to a specified value or that is equivalent to it in a sense specified by a binary predicate.

checked_copy
Same as copy, but enforces the use of a checked iterator as output iterator.

checked_copy_backward
Same as copy_backward, but enforces the use of a checked iterator as output iterator.

checked_fill_n
Same as fill_n, but enforces the use of a checked iterator as output iterator.

checked_generate_n
Same as generate_n, but enforces the use of a checked iterator as output iterator.

checked_merge
Same as merge, but enforces the use of a checked iterator as output iterator.

checked_remove_copy
Same as remove_copy, but enforces the use of a checked iterator as output iterato