Algorithm (C++)
In the C++ Standard Library, algorithms are components that perform algorithmic operations on containers and other sequences.[1]
| C++ Standard Library |
|---|
|
| Containers |
| C standard library |
The C++ standard provides some standard algorithms collected in the <algorithm> standard header.[2] A handful of algorithms are also in the <numeric> header. All algorithms are in the std namespace.
Categories of algorithms
The algorithms in the C++ Standard Library can be organized into the following categories.
- Non-modifying sequence operations (e.g.
find_if,count,search) - Modifying sequence operations (e.g.
replace,remove,reverse) - Sorting (e.g.
sort,stable_sort,partial_sort) - Binary search (e.g.
lower_bound,upper_bound) - Heap (e.g.
make_heap,push_heap) - Min/max (e.g.
min,max)
Examples
OutputIterator copy(InputIterator source_begin, InputIterator source_end, OutputIterator destination_begin)void fill(ForwardIterator destination_begin, ForwardIterator destination_end, T value)InputIterator find(InputIterator begin, InputIterator end, T search_obje(returns an iterator the found object orend, if the object isn't found)const T& max(const T& a, const T& b)returns the greater of the two argumentsForwardIterator max_element(ForwardIterator begin, ForwardIterator end)finds the maximum element of a rangeconst T& min(const T& a, const T& b)returns the smaller of the two argumentsForwardIterator min_element(ForwardIterator begin, ForwardIterator end)finds the minimum element of a range
gollark: Who is Clyde and why are they in my Discord server‽
gollark: I should add a "recommended interweb/media content" page to my website..
gollark: Specifically *totalitarian*capistan?
gollark: People are still allowed to be ethical under anarchocapitalism. In 1984, you will be potatoed if you disagree at all with what happens and there's basically no way of changing it.
gollark: It might not be. It might be 1984 or something.
References
- ISO/IEC (2003). ISO/IEC 14882:2003(E): Programming Languages - C++ §25 Algorithms library [lib.algorithms] para. 1
- Stroustrup, Bjarne (2009). Programming : principles and practice using C++. Upper Saddle River, NJ: Addison-Wesley. p. 729. ISBN 9780321543721. Retrieved 22 March 2012.
The standard library algorithms are found in
<algorithm>.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.