Tag: Algorithms
-
Searches for two adjacent elements that are equal (by some criterion)
-
Returns whether the range contains an element
-
Copies a range starting with the first element
-
Copies a range starting with the last element
-
Copies a specified number of elements
-
Count appearances of value in range
-
Returns the number of elements that match a criterion
-
Test whether two ranges are equal
-
Returns the range of elements equal to a given value
-
Replaces each element with a given value
-
Replaces n elements with a given value
-
Searches for the first element with the passed value
-
Searches for the last occurrence of a subrang
-
Searches the first of several possible elements
-
Searches for the first element that matches a criterion
-
Performs an operation for each element
-
Replaces each element with the result of an operation
-
Replaces n elements with the result of an operation
-
Returns whether each element of a range is also an element of another range
-
Merges two consecutive sorted ranges
-
Checks if a range is a heap or not
-
Swap values of objects pointed by two iterators