This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
cpp_ref [2018/08/08 19:57] jguerin created |
— (current) | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== 1. C++ Language Reference ====== | ||
- | |||
- | ===== Input/ | ||
- | * [[cpp_basic_io|Basic IO]] operations | ||
- | * [[cpp_faster_io|Faster IO]] for competitive programming | ||
- | |||
- | ===== Data Structures ===== | ||
- | |||
- | ==== Sequential Structures ==== | ||
- | * [[cpp_vectors|Vectors]] | ||
- | * [[cpp_lists|(Linked) Lists]] | ||
- | * [[cpp_strings|Strings]] | ||
- | * [[cpp_tuples|Tuples]] | ||
- | * [[cpp_pair|Pairs]] | ||
- | * [[cpp_stacks|Stacks]] | ||
- | * [[cpp_queues|Queues]] | ||
- | * [[cpp_priority_queues|Priority Queues]] | ||
- | * [[cpp_bitsets|Bitsets]] | ||
- | |||
- | |||
- | ==== Non-Sequential Structures ==== | ||
- | * [[cpp_unordered_maps|Unordered Maps]] | ||
- | * [[cpp_maps|Maps]] | ||
- | * [[cpp_unordered_sets|Unordered Sets]] | ||
- | * [[cpp_sets|Sets]] | ||
- | |||
- | ===== Mathematical Types and Operations ===== | ||
- | ==== Numeric Types ==== | ||
- | * [[cpp_math|CMath]] | ||
- | |||