📄 table_of_contents.html
字号:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"><html> <head> <title>Table of Contents: the Standard Template Library</title> </HEAD><BODY BGCOLOR="#ffffff" LINK="#0000ee" TEXT="#000000" VLINK="#551a8b" ALINK="#ff0000"> <IMG SRC="CorpID.gif" ALT="SGI" HEIGHT="43" WIDTH="151"> <!--end header--> <h1>Table of Contents: the Standard Template Library</h1> <OL> <LI><A Href="stl_introduction.html">Introduction to the STL</A> <LI><A Href="doc_introduction.html">How to use the documentation</A> <LI>Containers <OL> <LI>Concepts <OL> <LI>General concepts <OL> <LI><A href="Container.html">Container</A> <LI><A href="ForwardContainer.html">Forward Container</A> <LI><A href="ReversibleContainer.html">Reversible Container</A> <LI><A href="RandomAccessContainer.html">Random Access Container</A> </OL> <LI>Sequences <OL> <LI><A href="Sequence.html">Sequence</A> <LI><A href="FrontInsertionSequence.html">Front Insertion Sequence</A> <LI><A href="BackInsertionSequence.html">Back Insertion Sequence</A> </OL> <LI>Associative Containers <OL> <LI><A href="AssociativeContainer.html">Associative Container</A> <LI><A href="SimpleAssociativeContainer.html">Simple Associative Container</A> <LI><A href="PairAssociativeContainer.html">Pair Associative Container</A> <LI><A href="SortedAssociativeContainer.html">Sorted Associative Container</A> <LI><A href="HashedAssociativeContainer.html">Hashed Associative Container</A> <LI><A href="HashFunction.html">HashFunction</A> <LI><A href="UniqueAssociativeContainer.html">Unique Associative Container</A> <LI><A href="MultipleAssociativeContainer.html">Multiple Associative Container</A> <LI><A href="UniqueSortedAssociativeContainer.html">Unique Sorted Associative Container</A> <LI><A href="MultipleSortedAssociativeContainer.html">Multiple Sorted Associative Container</A> <LI><A href="UniqueHashedAssociativeContainer.html">Unique Hashed Associative Container</A> <LI><A href="MultipleHashedAssociativeContainer.html">Multiple Hashed Associative Container</A> </OL> </OL> <LI>Container classes <OL> <LI>Sequences <OL> <LI><A href="Vector.html">vector</A> <LI><A href="Deque.html">deque</A> <LI><A href="List.html">list</A> <LI><A href="Slist.html">slist</A> <LI><A href="bit_vector.html">bit_vector</A> </OL> <LI>Associative Containers <OL> <LI><A href="set.html">set</A> <LI><A href="Map.html">map</A> <LI><A href="multiset.html">multiset</A> <LI><A href="Multimap.html">multimap</A> <LI><A href="hash_set.html">hash_set</A> <LI><A href="hash_map.html">hash_map</A> <LI><A href="hash_multiset.html">hash_multiset</A> <LI><A href="hash_multimap.html">hash_multimap</A> <LI><A href="hash.html">hash</A> </OL> <LI> String package <OL> <LI><A href="character_traits.html">Character Traits</A> <LI><A href="char_traits.html">char_traits</A> <LI><A href="basic_string.html">basic_string</A> </OL> <LI> <A href="Rope.html">rope</A> <LI>Container adaptors <OL> <LI><A href="stack.html">stack</A> <LI><A href="queue.html">queue</A> <LI><A href="priority_queue.html">priority_queue</A> </OL> <LI> <A href="bitset.html">bitset</A> </OL> </OL> <LI>Iterators <OL> <LI><A href="Iterators.html">Introduction</A> <LI>Concepts <OL> <LI><A href="trivial.html">Trivial Iterator</A> <LI><A href="InputIterator.html">Input Iterator</A> <LI><A href="OutputIterator.html">Output Iterator</A> <LI><A href="ForwardIterator.html">Forward Iterator</A> <LI><A href="BidirectionalIterator.html">Bidirectional Iterator</A> <LI><A href="RandomAccessIterator.html">Random Access Iterator</A> </OL> <LI>Iterator Tags <OL> <LI><A href="iterator_tags.html">Introduction</A> <LI><A href="iterator_traits.html">iterator_traits</A> <LI><A href="iterator_category.html">iterator_category</A> <LI><A href="distance_type.html">distance_type</A> <LI><A href="value_type.html">value_type</A> <LI>Iterator tag classes <OL> <LI><A href="input_iterator_tag.html">input_iterator_tag</A> <LI><A href="output_iterator_tag.html">output_iterator_tag</A> <LI><A href="forward_iterator_tag.html">forward_iterator_tag</A> <LI><A href="bidirectional_iterator_tag.html">bidirectional_iterator_tag</A> <LI><A href="random_access_iterator_tag.html">random_access_iterator_tag</A> </OL> <LI>Iterator base classes <OL> <LI><A href="input_iterator.html">input_iterator</A> <LI><A href="output_iterator.html">output_iterator</A> <LI><A href="forward_iterator.html">forward_iterator</A> <LI><A href="bidirectional_iterator.html">bidirectional_iterator</A> <LI><A href="random_access_iterator.html">random_access_iterator</A> </OL> </OL> <LI>Iterator functions <OL> <LI><A href="distance.html">distance</A> <LI><A href="advance.html">advance</A> </OL> <LI>Iterator classes <OL> <LI><A href="istream_iterator.html">istream_iterator</A> <LI><A href="ostream_iterator.html">ostream_iterator</A> <LI><A href="front_insert_iterator.html">front_insert_iterator</A> <LI><A href="back_insert_iterator.html">back_insert_iterator</A> <LI><A href="insert_iterator.html">insert_iterator</A> <LI><A href="ReverseIterator.html">reverse_iterator</A> <LI><A href="ReverseBidirectionalIterator.html">reverse_bidirectional_iterator</A> <LI><A href="raw_storage_iterator.html">raw_storage_iterator</A> <LI><A href="sequence_buffer.html">sequence_buffer</A> </OL> </OL> <LI>Algorithms <OL> <LI>Non-mutating algorithms <OL> <LI><A href="for_each.html">for_each</A> <LI><A href="find.html">find</A> <LI><A href="find_if.html">find_if</A> <LI><A href="adjacent_find.html">adjacent_find</A> <LI><A href="find_first_of.html">find_first_of</A> <LI><A href="count.html">count</A> <LI><A href="count_if.html">count_if</A> <LI><A href="mismatch.html">mismatch</A> <LI><A href="equal.html">equal</A> <LI><A href="search.html">search</A> <LI><A href="search_n.html">search_n</A> <LI><A href="find_end.html">find_end</A> </OL> <LI>Mutating algorithms <OL> <LI><A href="copy.html">copy</A> <LI><A href="copy_n.html">copy_n</A> <LI><A href="copy_backward.html">copy_backward</A> <LI>Swap <OL> <LI><A href="swap.html">swap</A> <LI><A href="iter_swap.html">iter_swap</A> <LI><A href="swap_ranges.html">swap_ranges</A> </OL> <LI><A href="transform.html">transform</A> <LI>Replace <OL> <LI><A href="replace.html">replace</A> <LI><A href="replace_if.html">replace_if</A> <LI><A href="replace_copy.html">replace_copy</A> <LI><A href="replace_copy_if.html">replace_copy_if</A> </OL> <LI><A href="fill.html">fill</A> <LI><A href="fill_n.html">fill_n</A> <LI><A href="generate.html">generate</A> <LI><A href="generate_n.html">generate_n</A> <LI>Remove <OL> <LI><A href="remove.html">remove</A> <LI><A href="remove_if.html">remove_if</A> <LI><A href="remove_copy.html">remove_copy</A> <LI><A href="remove_copy_if.html">remove_copy_if</A> </OL> <LI><A href="unique.html">unique</A> <LI><A href="unique_copy.html">unique_copy</A> <LI><A href="reverse.html">reverse</A> <LI><A href="reverse_copy.html">reverse_copy</A> <LI><A href="rotate.html">rotate</A> <LI><A href="rotate_copy.html">rotate_copy</A> <LI><A href="random_shuffle.html">random_shuffle</A> <LI><A href="random_sample.html">random_sample</A> <LI><A href="random_sample_n.html">random_sample_n</A> <LI><A href="partition.html">partition</A> <LI><A href="stable_partition.html">stable_partition</A> </OL>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -