Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
4d65af08
Commit
4d65af08
authored
Mar 25, 2006
by
Raymond Hettinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add section headers and examples.
parent
6a91e94e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
82 additions
and
2 deletions
+82
-2
Doc/lib/libcollections.tex
Doc/lib/libcollections.tex
+82
-2
No files found.
Doc/lib/libcollections.tex
View file @
4d65af08
...
...
@@ -10,9 +10,11 @@
This module implements high-performance container datatypes. Currently,
there are two datatypes, deque and defaultdict.
Future additions may include
B-trees and Fibonacci heap
s.
Future additions may include
balanced trees and ordered dictionarie
s.
\versionchanged
[Added defaultdict]
{
2.5
}
\subsection
{
\class
{
deque
}
objects
\label
{
deque-objects
}}
\begin{funcdesc}
{
deque
}{
\optional
{
iterable
}}
Returns a new deque objected initialized left-to-right (using
\method
{
append()
}
) with data from
\var
{
iterable
}
. If
\var
{
iterable
}
...
...
@@ -137,7 +139,7 @@ IndexError: pop from an empty deque
deque(['c', 'b', 'a'])
\end{verbatim}
\subsection
{
Recipes
\label
{
deque-recipes
}}
\subs
ubs
ection
{
Recipes
\label
{
deque-recipes
}}
This section shows various approaches to working with deques.
...
...
@@ -215,6 +217,8 @@ def maketree(iterable):
\subsection
{
\class
{
defaultdict
}
objects
\label
{
defaultdict-objects
}}
\begin{funcdesc}
{
defaultdict
}{
\optional
{
default
_
factory
\optional
{
, ...
}}}
Returns a new dictionary-like object.
\class
{
defaultdict
}
is a subclass
of the builtin
\class
{
dict
}
class. It overrides one method and adds one
...
...
@@ -255,3 +259,79 @@ the standard \class{dict} operations:
from the first argument to the constructor, if present, or to
\code
{
None
}
,
if absent.
\end{datadesc}
\subsubsection
{
\class
{
defaultdict
}
Examples
\label
{
defaultdict-examples
}}
Using
\class
{
list
}
as the
\member
{
default
_
factory
}
, it is easy to group
a sequence of key-value pairs into a dictionary of lists:
\begin{verbatim}
>>> s = [('yellow', 1), ('blue', 2), ('yellow', 3), ('blue', 4), ('red', 1)]
>>> d = defaultdict(list)
>>> for k, v in s:
d[k].append(v)
>>> d.items()
[('blue', [2, 4]), ('red', [1]), ('yellow', [1, 3])]
\end{verbatim}
When each key is encountered for the first time, it is not already in the
mapping; so an entry is automatically created using the
\member
{
default
_
factory
}
function which returns an empty
\class
{
list
}
. The
\method
{
list.append()
}
operation then attaches the value the new list. When
keys are encountered again, the look-up proceeds normally (returning the list
for that key) and the
\method
{
list.append()
}
operation adds another value to
the list. This technique is simpler and faster than an equivalent technique
using
\method
{
dict.setdefault()
}
:
\begin{verbatim}
>>> d =
{}
>>> for k, v in s:
d.setdefault(k, []).append(v)
>>> d.items()
[('blue', [2, 4]), ('red', [1]), ('yellow', [1, 3])]
\end{verbatim}
Setting the
\member
{
default
_
factory
}
to
\class
{
int
}
makes the
\class
{
defaultdict
}
useful for counting (like a bag or multiset in other
languages):
\begin{verbatim}
>>> s = 'mississippi'
>>> d = defaultdict(int)
>>> for k in s:
d[k] += 1
>>> d.items()
[('i', 4), ('p', 2), ('s', 4), ('m', 1)]
\end{verbatim}
When a letter in first encountered, it is missing from the mapping, so the
\member
{
default
_
factory
}
function calls
\function
{
int()
}
to supply a default
count of zero. The increment operation then builds of the count for each
letter. This technique makes counting simpler and faster than an equivalent
technique using
\method
{
dict.get()
}
:
\begin{verbatim}
>>> d =
{}
>>> for k in s:
d[k] = d.get(k, 0) + 1
>>> d.items()
[('i', 4), ('p', 2), ('s', 4), ('m', 1)]
\end{verbatim}
Setting the
\member
{
default
_
factory
}
to
\class
{
set
}
makes the
\class
{
defaultdict
}
useful for building a dictionary of sets:
\begin{verbatim}
>>> s = [('red', 1), ('blue', 2), ('red', 3), ('blue', 4), ('red', 1), ('blue', 4)]
>>> d = defaultdict(set)
>>> for k, v in s:
d[k].add(v)
>>> d.items()
[('blue', set([2, 4])), ('red', set([1, 3]))]
\end{verbatim}
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