Namespaces
Variants
Views
Actions

Difference between revisions of "c/algorithm"

From cppreference.com
< c
m (References; language links)
m (reference for _s)
Line 10: Line 10:
 
===References===
 
===References===
 
{{ref std c11}}
 
{{ref std c11}}
{{ref std | section=7.22.5 | title= Searching and sorting utilities | p=354-356}}
+
{{ref std | section=7.22.5 | title= Searching and sorting utilities | p=354-356}}
 +
{{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}}

Revision as of 05:18, 17 February 2015

Defined in header <stdlib.h>
sorts a range of elements with unspecified type
(function) [edit]
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):

See also

C++ documentation for Algorithms library