Added section on passing contextual information to logging and documentation for...
[python.git] / Doc / library / bisect.rst
blob6d91644d968a619f98d93a37b797dd2b94a3e368
2 :mod:`bisect` --- Array bisection algorithm
3 ===========================================
5 .. module:: bisect
6    :synopsis: Array bisection algorithms for binary searching.
7 .. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
8 .. example based on the PyModules FAQ entry by Aaron Watters <arw@pythonpros.com>
10 This module provides support for maintaining a list in sorted order without
11 having to sort the list after each insertion.  For long lists of items with
12 expensive comparison operations, this can be an improvement over the more common
13 approach.  The module is called :mod:`bisect` because it uses a basic bisection
14 algorithm to do its work.  The source code may be most useful as a working
15 example of the algorithm (the boundary conditions are already right!).
17 The following functions are provided:
20 .. function:: bisect_left(list, item[, lo[, hi]])
22    Locate the proper insertion point for *item* in *list* to maintain sorted order.
23    The parameters *lo* and *hi* may be used to specify a subset of the list which
24    should be considered; by default the entire list is used.  If *item* is already
25    present in *list*, the insertion point will be before (to the left of) any
26    existing entries.  The return value is suitable for use as the first parameter
27    to ``list.insert()``.  This assumes that *list* is already sorted.
29    .. versionadded:: 2.1
32 .. function:: bisect_right(list, item[, lo[, hi]])
34    Similar to :func:`bisect_left`, but returns an insertion point which comes after
35    (to the right of) any existing entries of *item* in *list*.
37    .. versionadded:: 2.1
40 .. function:: bisect(...)
42    Alias for :func:`bisect_right`.
45 .. function:: insort_left(list, item[, lo[, hi]])
47    Insert *item* in *list* in sorted order.  This is equivalent to
48    ``list.insert(bisect.bisect_left(list, item, lo, hi), item)``.  This assumes
49    that *list* is already sorted.
51    .. versionadded:: 2.1
54 .. function:: insort_right(list, item[, lo[, hi]])
56    Similar to :func:`insort_left`, but inserting *item* in *list* after any
57    existing entries of *item*.
59    .. versionadded:: 2.1
62 .. function:: insort(...)
64    Alias for :func:`insort_right`.
67 Examples
68 --------
70 .. _bisect-example:
72 The :func:`bisect` function is generally useful for categorizing numeric data.
73 This example uses :func:`bisect` to look up a letter grade for an exam total
74 (say) based on a set of ordered numeric breakpoints: 85 and up is an 'A', 75..84
75 is a 'B', etc. ::
77    >>> grades = "FEDCBA"
78    >>> breakpoints = [30, 44, 66, 75, 85]
79    >>> from bisect import bisect
80    >>> def grade(total):
81    ...           return grades[bisect(breakpoints, total)]
82    ...
83    >>> grade(66)
84    'C'
85    >>> map(grade, [33, 99, 77, 44, 12, 88])
86    ['E', 'A', 'B', 'D', 'F', 'A']