Difference between revisions of "c/algorithm"
From cppreference.com
< c
m (reference for _s) |
m (→See also: nomono) |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 13: | Line 13: | ||
{{ref std | section=K.3.6.3 | title= Searching and sorting utilities | p=607-609}} | {{ref std | section=K.3.6.3 | title= Searching and sorting utilities | p=607-609}} | ||
{{ref std c99}} | {{ref std c99}} | ||
− | {{ref std | section=7.20.5 | title= Searching and sorting utilities | p=318-319}} | + | {{ref std | section=7.20.5 | title= Searching and sorting utilities | p=318-319}} |
{{ref std c89}} | {{ref std c89}} | ||
− | {{ref std | section= | title=}} | + | {{ref std | section=4.10.5 | title=Searching and sorting utilities}} |
{{ref std end}} | {{ref std end}} | ||
===See also=== | ===See also=== | ||
{{dsc begin}} | {{dsc begin}} | ||
− | {{dsc see cpp | cpp/algorithm |Algorithms library}} | + | {{dsc see cpp | cpp/algorithm |Algorithms library | nomono=true}} |
{{dsc end}} | {{dsc end}} | ||
− | + | ||
− | + | {{langlinks|ar|cs|de|es|fr|it|ja|ko|pl|pt|ru|tr|zh}} | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + |
Latest revision as of 03:21, 23 June 2021
Defined in header
<stdlib.h> | |
(C11) |
sorts a range of elements with unspecified type (function) |
(C11) |
searches an array for an element of unspecified type (function) |
[edit] References
- C11 standard (ISO/IEC 9899:2011):
- 7.22.5 Searching and sorting utilities (p: 354-356)
- K.3.6.3 Searching and sorting utilities (p: 607-609)
- C99 standard (ISO/IEC 9899:1999):
- 7.20.5 Searching and sorting utilities (p: 318-319)
- C89/C90 standard (ISO/IEC 9899:1990):
- 4.10.5 Searching and sorting utilities
[edit] See also
C++ documentation for Algorithms library
|