Namespaces
Variants
Views
Actions

Difference between revisions of "c/algorithm"

From cppreference.com
< c
m (descriptive name)
m (References; language links)
Line 7: Line 7:
 
{{dsc inc | c/algorithm/dsc bsearch}}
 
{{dsc inc | c/algorithm/dsc bsearch}}
 
{{dsc end}}
 
{{dsc end}}
 +
 +
===References===
 +
{{ref std c11}}
 +
{{ref std | section=7.22.5 | title= Searching and sorting utilities | p=354-356}}
 +
{{ref std c99}}
 +
{{ref std | section=7.20.5 | title= Searching and sorting utilities | p=318-319}}
 +
{{ref std c89}}
 +
{{ref std | section= | title=}}
 +
{{ref std end}}
  
 
===See also===
 
===See also===
Line 13: Line 22:
 
{{dsc end}}
 
{{dsc end}}
  
 +
[[ar:c/algorithm]]
 +
[[cs:c/algorithm]]
 
[[de:c/algorithm]]
 
[[de:c/algorithm]]
 
[[es:c/algorithm]]
 
[[es:c/algorithm]]
Line 18: Line 29:
 
[[it:c/algorithm]]
 
[[it:c/algorithm]]
 
[[ja:c/algorithm]]
 
[[ja:c/algorithm]]
 +
[[ko:c/algorithm]]
 +
[[pl:c/algorithm]]
 
[[pt:c/algorithm]]
 
[[pt:c/algorithm]]
 
[[ru:c/algorithm]]
 
[[ru:c/algorithm]]
 +
[[tr:c/algorithm]]
 
[[zh:c/algorithm]]
 
[[zh:c/algorithm]]

Revision as of 04:45, 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)
  • 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