Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
fcd2c9bb
Commit
fcd2c9bb
authored
Mar 10, 2012
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated docs
parent
ba8fe349
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
162 deletions
+4
-162
containers.xml
docs/docs/containers.xml
+4
-162
No files found.
docs/docs/containers.xml
View file @
fcd2c9bb
...
@@ -9,8 +9,8 @@
...
@@ -9,8 +9,8 @@
<body>
<body>
<br/><br/>
<br/><br/>
<p>
<p>
Many of these containers were inspired by the RESOLVE/C++ course sequence at Ohio State. As such,
most of
Many of these containers were inspired by the RESOLVE/C++ course sequence at Ohio State. As such,
the objects do not support copying in any form, only swapping is allowed. That is, when objects
many of
the objects do not support copying in any form, only swapping is allowed. That is, when objects
are added or removed from any of these containers they are swapped in and out, not copied.
are added or removed from any of these containers they are swapped in and out, not copied.
</p>
</p>
...
@@ -21,17 +21,6 @@
...
@@ -21,17 +21,6 @@
something you can do with the STL.
something you can do with the STL.
</p>
</p>
<p>
To use any of these containers all you need to do is #include the file indicated in the
short section about the component you would like to use. Then pick which implementation you
would like and typedef it to something nice. Here is an example of creating a typedef for
a set of integers using the first kernel implementation.
<br/>
<tt>
typedef dlib::set
<
int
>
::kernel_1a set_of_ints;
</tt>
. Or as another example,
if you wanted to make an expandable array of ints you might say
<br/>
<tt>
typedef dlib::array
<
int
>
::expand_1d_c array_of_ints;
</tt>
.
</p>
<p>
<p>
Note that it is assumed by these containers that swap() and operator
<
do not throw. They
Note that it is assumed by these containers that swap() and operator
<
do not throw. They
may not function correctly if this assumption is broken. Also note that the built in types (int, long,
may not function correctly if this assumption is broken. Also note that the built in types (int, long,
...
@@ -644,163 +633,16 @@
...
@@ -644,163 +633,16 @@
<components>
<components>
<component
checked=
"true"
>
<component>
<name>
array
</name>
<name>
array
</name>
<file>
dlib/array.h
</file>
<file>
dlib/array.h
</file>
<spec_file>
dlib/array/array_kernel_abstract.h
</spec_file>
<spec_file>
dlib/array/array_kernel_abstract.h
</spec_file>
<description>
<description>
This object is just like a C style array and the accessor functions operate
This object is just like a
1-dimensional
C style array and the accessor functions operate
in constant time.
in constant time.
</description>
</description>
<implementations>
<implementation>
<name>
array_kernel_1
</name>
<file>
dlib/array/array_kernel_1.h
</file>
<description>
This implementation is done using an array of pointers, each of which point to
small sections of the array. This implementation allows the array to use only
about as much memory as it needs at any given time.
It does not use the
<a
href=
"other.html#memory_manager"
>
memory_manager
</a>
at all.
</description>
<typedefs>
<typedef>
<name>
kernel_1a
</name>
<description>
is a typedef for array_kernel_1
</description>
</typedef>
</typedefs>
</implementation>
<implementation>
<name>
array_kernel_2
</name>
<file>
dlib/array/array_kernel_2.h
</file>
<description>
This implementation is done using a single array of max_size() elements. So this
is just a simple layer on top of a C style array.
It uses the
<a
href=
"other.html#memory_manager"
>
memory_manager
</a>
for all
memory allocations.
</description>
<typedefs>
<typedef>
<name>
kernel_2a
</name>
<description>
is a typedef for array_kernel_2
</description>
</typedef>
</typedefs>
</implementation>
</implementations>
<extensions>
<extension>
<name>
array_sort
</name>
<spec_file>
dlib/array/array_sort_abstract.h
</spec_file>
<description>
This extension gives an array the ability to sort its contents.
</description>
<implementations>
<implementation>
<name>
array_sort_1
</name>
<file>
dlib/array/array_sort_1.h
</file>
<description>
This is a version of the QuickSort algorithm. It swaps the entire array into a C
style array, sorts it and then swaps it back into the array object.
</description>
<typedefs>
<typedef>
<name>
sort_1a
</name>
<description>
is a typedef for array_kernel_1a extended by array_sort_1
</description>
</typedef>
<typedef>
<name>
sort_1b
</name>
<description>
is a typedef for array_kernel_2a extended by array_sort_1
</description>
</typedef>
</typedefs>
</implementation>
<implementation>
<name>
array_sort_2
</name>
<file>
dlib/array/array_sort_2.h
</file>
<description>
This is a version of the QuickSort algorithm.
</description>
<typedefs>
<typedef>
<name>
sort_2a
</name>
<description>
is a typedef for array_kernel_1a extended by array_sort_2
</description>
</typedef>
<typedef>
<name>
sort_2b
</name>
<description>
is a typedef for array_kernel_2a extended by array_sort_2
</description>
</typedef>
</typedefs>
</implementation>
</implementations>
</extension>
<extension>
<name>
array_expand
</name>
<spec_file>
dlib/array/array_expand_abstract.h
</spec_file>
<description>
This extension gives an array the ability to expand its size() beyond
its max_size() without clearing out all its elements. It also adds a set of pop/push_back()
functions similar to the ones in the std::vector object.
</description>
<implementations>
<implementation>
<name>
array_expand_1
</name>
<file>
dlib/array/array_expand_1.h
</file>
<description>
This is implemented by creating a new bigger array if max_size() isn't big enough,
swapping everything into that new array, and then swapping that array with *this.
</description>
<typedefs>
<typedef>
<name>
expand_1a
</name>
<description>
is a typedef for array_sort_1a extended by array_expand_1
</description>
</typedef>
<typedef>
<name>
expand_1b
</name>
<description>
is a typedef for array_sort_1b extended by array_expand_1
</description>
</typedef>
<typedef>
<name>
expand_1c
</name>
<description>
is a typedef for array_sort_2a extended by array_expand_1
</description>
</typedef>
<typedef>
<name>
expand_1d
</name>
<description>
is a typedef for array_sort_2b extended by array_expand_1
</description>
</typedef>
</typedefs>
</implementation>
</implementations>
</extension>
</extensions>
</component>
</component>
<!-- ************************************************************************* -->
<!-- ************************************************************************* -->
<component
checked=
"true"
>
<component
checked=
"true"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment