From Jason Turner

[algorithms.general]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpwzvya85z/{from.md → to.md} +10 -7
tmp/tmpwzvya85z/{from.md → to.md} RENAMED
@@ -1,21 +1,24 @@
1
  ## General <a id="algorithms.general">[[algorithms.general]]</a>
2
 
3
  This Clause describes components that C++ programs may use to perform
4
- algorithmic operations on containers (Clause  [[containers]]) and other
5
- sequences.
6
 
7
  The following subclauses describe components for non-modifying sequence
8
- operations, modifying sequence operations, sorting and related
9
  operations, and algorithms from the ISO C library, as summarized in
10
- Table  [[tab:algorithms.summary]].
11
 
12
- **Table: Algorithms library summary** <a id="tab:algorithms.summary">[tab:algorithms.summary]</a>
13
 
14
  | Subclause | | Header |
15
  | ---------------------------- | --------------------------------- | ------------- |
16
- | [[alg.nonmodifying]] | Non-modifying sequence operations | |
17
- | [[alg.modifying.operations]] | Mutating sequence operations | `<algorithm>` |
 
 
18
  | [[alg.sorting]] | Sorting and related operations | |
 
 
19
  | [[alg.c.library]] | C library algorithms | `<cstdlib>` |
20
 
21
 
 
1
  ## General <a id="algorithms.general">[[algorithms.general]]</a>
2
 
3
  This Clause describes components that C++ programs may use to perform
4
+ algorithmic operations on containers [[containers]] and other sequences.
 
5
 
6
  The following subclauses describe components for non-modifying sequence
7
+ operations, mutating sequence operations, sorting and related
8
  operations, and algorithms from the ISO C library, as summarized in
9
+ [[algorithms.summary]].
10
 
11
+ **Table: Algorithms library summary** <a id="algorithms.summary">[algorithms.summary]</a>
12
 
13
  | Subclause | | Header |
14
  | ---------------------------- | --------------------------------- | ------------- |
15
+ | [[algorithms.requirements]] | Algorithms requirements | |
16
+ | [[algorithms.parallel]] | Parallel algorithms | |
17
+ | [[alg.nonmodifying]] | Non-modifying sequence operations | `<algorithm>` |
18
+ | [[alg.modifying.operations]] | Mutating sequence operations | |
19
  | [[alg.sorting]] | Sorting and related operations | |
20
+ | [[numeric.ops]] | Generalized numeric operations | `<numeric>` |
21
+ | [[specialized.algorithms]] | Specialized `<memory>` algorithms | `<memory>` |
22
  | [[alg.c.library]] | C library algorithms | `<cstdlib>` |
23
 
24