⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bcb6scl.toc

📁 希望我上传的这些东西可以对搞编程的程序员有点小小的帮助!谢谢!
💻 TOC
📖 第 1 页 / 共 3 页
字号:
:Base bcb6scl.hlp>main
:Title Standard C++ Library Help
;
1 Standard C++ Library
;
2 User's Guide
3 Part I: Introduction and product overview
3 Introduction=sclIntro
4 Product overview
5 Components=Components
5 Unique features=Unique features
5 Relationship to Tools.h++=Relationship to Toolsh
5 Compatibility issues=Compatibility issues
5 Documentation assumptions=Assumptions
3 Part II: Fundamentals
4 Iterators
5 Overview: iterators=Overview iterators
6 Varieties of iterators=Varieties of iterators
6 Input iterators=Input iterators
6 Kinds of input iterators=Kinds of input iterators
6 Output iterators=Output iterators
6 Forward iterators=Forward iterators
6 Bidirectional iterators=Bidirectional iterators
6 Random access iterators=Random access iterators
6 Reverse iterators=Reverse iterators
6 Stream iterators=Stream iterators
6 Input stream iterators=Input stream iterators
6 Output stream iterators=Output stream iterators
6 Insert iterators=Insert iterators
6 Iterator operations=Iterator operations
4 Functions and predicates
5 Functions=Functions
6 Predicates=Predicates
5 Function objects
6 Overview: Function objects=Overview function objects
7 To employ existing standard library function objects=To employ existing standard library function objects
7 To access or set state information=To access or set state information
5 Function adaptors
6 Overview: Function adaptors=Overview Function adaptors
7 Adapting global functions=Adapting global functions
7 Adapting member functions=Adapting member functions
6 Negators and binders=Negators and binders
3 Part III: Containers
4 Container classes
5 Overview: Container classes=Overview Container classes
6 Selecting a container=Selecting a container
6 Memory management issues=Memory management issues
6 Container types not found in the standard library=Container types not found in the standard library
4 vector and vector<bool>
5 The vector data abstraction=The vector data abstraction
6 Vector operations=Vector operations
6 Declaration and initialization of vectors=Declaration and initialization of vectors
6 vector type definitions=vector type definitions
6 Subscripting a vector=Subscripting a vector
6 vector extent and size-changing operations=vector extent and size-changing operations
6 Inserting and removing elements=Inserting and removing elements
6 vector iteration=vector iteration
6 vectors: testing for inclusion=vectors testing for inclusion
6 Sorting and sorted vector operations=Sorting and sorted vector operations
6 Useful generic algorithms for vectors=Useful generic algorithms for vectors
6 Boolean vectors=Boolean vectors
6 Example program: the sieve of Eratosthenes=Example program the sieve of Eratosthenes
4 list
5 The list data abstraction=The list data abstraction
6 list operations=list operations
6 Declaration and initialization of lists=Declaration and initialization of lists
6 list type definitions=list type definitions
6 Placing elements into a list=Placing elements into a list
6 Splicing=Splicing
6 Removing elements=Removing elements
6 list extent and size-changing operations=list extent and size-changing operations
6 Access and iteration=Access and iteration
6 lists: testing for inclusion=lists testing for inclusion
6 Sorting and sorted list operations=Sorting and sorted list operations
6 lists: searching operations=lists searching operations
6 lists: in-place transformations=lists in-place transformations
6 lists: other operations=lists other operations
6 Example program: an inventory system=Example program an inventory system
4 deque
5 The deque data abstraction=The deque data abstraction
6 Deque operations=Deque operations
6 Example program: radix sort=Example program radix sort
4 set, multiset, and bitset
5 The set data abstraction=The set data abstraction
6 Set and multiset operations=Set and multiset operations
6 Declaration and initialization of set=Declaration and initialization of set
6 set type definitions=set type definitions
6 set insertion=set insertion
6 Removal of elements from a set=Removal of elements from a set
6 sets: searching and counting=sets searching and counting
6 set iterators=set iterators
6 set and multiset operations=set and multiset operations
6 Subset test=Subset test
6 set union or intersection=set union or intersection
6 set difference=set difference
6 sets: other generic algorithms=sets other generic algorithms
6 Example program: a spelling checker=Example program a spelling checker
6 The bitset abstraction=The bitset abstraction
6 Declaration and initialization of bitset=Declaration and initialization of bitset
6 Accessing and testing elements=Accessing and testing elements
6 set operations on bitsets=set operations on bitsets
6 bitset conversions=bitset conversions
4 map and multimap
5 The map data abstraction=The map data abstraction
8 map and multimap operations=map and multimap operations
6 Declaration and initialization of map=Declaration and initialization of map
6 map type definitions=map type definitions
6 map: insertion and access=map insertion and access
6 Removal of values=Removal of values
6 Iterators=Iterators
6 Searching and counting=Searching and counting
6 Element comparisons=Element comparisons
6 Other map operations=Other map operations
6 Example: a telephone database=Example a telephone database
6 An example: graphs=An example graphs
6 Example: a concordance=Example a concordance
4 stack and queue
5 Overview: stack and queue=Overview stack and queue
6 The stack data abstraction=The stack data abstraction
6 Declaration and initialization of stack=Declaration and initialization of stack
6 Example program: an RPN calculator=Example program an RPN calculator
6 The queue data abstraction=The queue data abstraction
6 Declaration and initialization of queue=Declaration and initialization of queue
6 Example program: bank teller simulation=Example program bank teller simulation
4 priority queue
5 The priority queue data abstraction=The priority queue data abstraction
6 The priority queue operations=The priority queue operations
6 Declaration and initialization of priority queue=Declaration and initialization of priority queue
6 Example program: event-driven simulation=Example program event-driven simulation
6 Example program: an ice cream store simulation=Example program an ice cream store simulation
4 string
5 The string abstraction=The string abstraction
6 Declaration and initialization of string=Declaration and initialization of string
6 string: resetting size and capacity=string resetting size and capacity
6 Assignment, append, and swap=Assignment, append, and swap
6 Character access=Character access
6 string iterators=string iterators
6 string insertion, removal, and replacement=string nsertion, removal, and replacement
6 Copy and substring=Copy and substring
6 string comparisons=string comparisons
6 string searching operations=string searching operations
6 Example function: split a line into words=Example function split a line into words
3 Part IV: Algorithms
4 Generic algorithms
5 Overview: Generic algorithms=Overview Generic algorithms
6 Initialization algorithms=Initialization algorithms
6 Fill a sequence with an initial value=Fill a sequence with an initial value
6 Copy one sequence into another sequence=Copy one sequence into another sequence
6 Initialize a sequence with generated values=Initialize a sequence with generated values
6 Swap values from two parallel ranges=Swap values from two parallel ranges
6 Searching operations=Searching operations
6 Find an element satisfying a condition=Find an element satisfying a condition
6 Find consecutive duplicate elements=Find consecutive duplicate elements
6 Find the first occurrence of any value from a sequence=Find the first occurrence of any value from a sequence
6 Find a sub-sequence within a sequence=Find a sub-sequence within a sequence
6 Find the last occurrence of a sub-sequence=Find the last occurrence of a sub-sequence
6 Locate maximum or minimum element=Locate maximum or minimum element
6 Locate the first mismatched elements in parallel sequences=Locate the first mismatched elements in parallel sequences
6 In-place transformations=In-place transformations
6 Reverse elements in a sequence=Reverse elements in a sequence
6 Replace certain elements with fixed value=Replace certain elements with fixed value
6 Rotate elements around a midpoint=Rotate elements around a midpoint
6 Partition a sequence into two groups=Partition a sequence into two groups
6 Generate permutations in sequence=Generate permutations in sequence
6 Merge two adjacent sequences into one=Merge two adjacent sequences into one
6 Randomly rearrange elements in a sequence=Randomly rearrange elements in a sequence
6 Removal algorithms=Removal algorithms
6 Remove unwanted elements=Remove unwanted elements
6 Remove runs of similar values=Remove runs of similar values
6 Scalar-producing algorithms=Scalar-producing algorithms
6 Count the number of elements that satisfy a condition=Count the number of elements that satisfy a condition
6 Reduce sequence to a single value=Reduce sequence to a single value
6 Generalized inner product=Generalized inner product
6 Test two sequences for pairwise equality=Test two sequences for pairwise equality
6 Lexical comparison=Lexical comparison
6 Sequence-generating algorithms=Sequence-generating algorithms
6 Transform one or two sequences=Transform one or two sequences
6 Partial sums=Partial sums
6 Adjacent differences=Adjacent differences
6 The for_each algorithm=The for_each algorithm
4 Ordered collection algorithms
5 Overview: Ordered collection algorithms=Overview Ordered collection algorithms
6 Sorting algorithms=Sorting algorithms
6 Partial sort=Partial sort
6 nth element=nth element
6 Binary search=Binary search
6 Merge ordered sequences=Merge ordered sequences
6 set operations=set operations
6 heap operations=heap operations
3 Part V: Special techniques
4 Using allocators
5 Overview: Using allocators=Overview Using allocators
6 Using allocators with existing standard library containers=Using allocators with existing standard library containers
6 Building your own allocators=Building your own allocators
6 Using the standard allocator interface=Using the standard allocator interface
6 Using Rogue Wave's alternative interface=Using Rogue Wave's alternative interface
6 How to support both interfaces=How to support both interfaces
4 Building containers and generic algorithms
5 Extending the library=Extending the library
6 Building on the standard containers=Building on the standard containers
6 Inheritance=Inheritance
6 Generic inheritance=Generic inheritance
6 Generic composition=Generic composition
6 Creating your own containers=Creating your own containers
6 Meeting the container requirements=Meeting the container requirements
6 Meeting the allocator interface requirements=Meeting the allocator interface requirements
6 Iterator requirements=Iterator requirements
5 Tips and techniques for building algorithms
5 The iterator_traits template=The iterator_traits template
6 The distance and advance primitives=The distance and advance primitives
4 The traits parameter
5 Traits: defining the problem=Traits defining the problem
6 Using the traits technique=Using the traits technique
4 Exception handling
5 Overview: Exception handling=Overview Exception handling
6 The standard exception hierarchy=The standard exception hierarchy
6 Using exceptions=Using exceptions
6 Example program: exceptions=Example program exceptions
3 Part VI: Special classes
4 auto_ptr
5 Overview: auto_ptr=Overview auto_ptr
6 Declaration and initialization of autopointers=Declaration and initialization of autopointers
4 complex
5 Overview: complex class=Overview complex class
6 Declaring complex numbers=Declaring complex numbers
6 Accessing complex number values=Accessing complex number values
6 Arithmetic operations=Arithmetic operations
6 Comparing complex values=Comparing complex values
6 Stream input and output=Stream input and output
6 Norm and absolute value=Norm and absolute value
6 Trigonometric functions=Trigonometric functions
6 Complex numbers: transcendental functions=Complex numbers transcendental functions
6 Example program: roots of a polynomial=Example program roots of a polynomial
4 numeric limits
5 Overview: numeric_limits=Overview numeric_limits
6 Fundamental datatypes=Fundamental datatypes
6 numeric_limits members=numeric_limits members

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -