Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | :mod:`bisect` --- Array bisection algorithm |
| 2 | =========================================== |
| 3 | |
| 4 | .. module:: bisect |
| 5 | :synopsis: Array bisection algorithms for binary searching. |
| 6 | .. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org> |
Raymond Hettinger | 20933e0 | 2010-09-01 06:58:25 +0000 | [diff] [blame] | 7 | .. sectionauthor:: Raymond Hettinger <python at rcn.com> |
Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 8 | .. example based on the PyModules FAQ entry by Aaron Watters <arw@pythonpros.com> |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 9 | |
| 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!). |
| 16 | |
Éric Araujo | 6e6cb8e | 2010-11-16 19:13:50 +0000 | [diff] [blame] | 17 | .. seealso:: |
| 18 | |
| 19 | Latest version of the :source:`bisect module Python source code |
| 20 | <Lib/bisect.py>` |
| 21 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 22 | The following functions are provided: |
| 23 | |
| 24 | |
Georg Brandl | 0d8f073 | 2009-04-05 22:20:44 +0000 | [diff] [blame] | 25 | .. function:: bisect_left(a, x, lo=0, hi=len(a)) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 26 | |
Raymond Hettinger | 20933e0 | 2010-09-01 06:58:25 +0000 | [diff] [blame] | 27 | Locate the insertion point for *x* in *a* to maintain sorted order. |
Georg Brandl | 0d8f073 | 2009-04-05 22:20:44 +0000 | [diff] [blame] | 28 | The parameters *lo* and *hi* may be used to specify a subset of the list |
| 29 | which should be considered; by default the entire list is used. If *x* is |
| 30 | already present in *a*, the insertion point will be before (to the left of) |
| 31 | any existing entries. The return value is suitable for use as the first |
Raymond Hettinger | 20933e0 | 2010-09-01 06:58:25 +0000 | [diff] [blame] | 32 | parameter to ``list.insert()`` assuming that *a* is already sorted. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 33 | |
Raymond Hettinger | 20933e0 | 2010-09-01 06:58:25 +0000 | [diff] [blame] | 34 | The returned insertion point *i* partitions the array *a* into two halves so |
| 35 | that ``all(val < x for val in a[lo:i])`` for the left side and |
| 36 | ``all(val >= x for val in a[i:hi])`` for the right side. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 37 | |
Georg Brandl | 0d8f073 | 2009-04-05 22:20:44 +0000 | [diff] [blame] | 38 | .. function:: bisect_right(a, x, lo=0, hi=len(a)) |
| 39 | bisect(a, x, lo=0, hi=len(a)) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 40 | |
Georg Brandl | 0d8f073 | 2009-04-05 22:20:44 +0000 | [diff] [blame] | 41 | Similar to :func:`bisect_left`, but returns an insertion point which comes |
| 42 | after (to the right of) any existing entries of *x* in *a*. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 43 | |
Raymond Hettinger | 20933e0 | 2010-09-01 06:58:25 +0000 | [diff] [blame] | 44 | The returned insertion point *i* partitions the array *a* into two halves so |
| 45 | that ``all(val <= x for val in a[lo:i])`` for the left side and |
| 46 | ``all(val > x for val in a[i:hi])`` for the right side. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 47 | |
Georg Brandl | 0d8f073 | 2009-04-05 22:20:44 +0000 | [diff] [blame] | 48 | .. function:: insort_left(a, x, lo=0, hi=len(a)) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 49 | |
Georg Brandl | 0d8f073 | 2009-04-05 22:20:44 +0000 | [diff] [blame] | 50 | Insert *x* in *a* in sorted order. This is equivalent to |
Raymond Hettinger | 20933e0 | 2010-09-01 06:58:25 +0000 | [diff] [blame] | 51 | ``a.insert(bisect.bisect_left(a, x, lo, hi), x)`` assuming that *a* is |
| 52 | already sorted. Keep in mind that the O(log n) search is dominated by |
| 53 | the slow O(n) insertion step. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 54 | |
Georg Brandl | 0d8f073 | 2009-04-05 22:20:44 +0000 | [diff] [blame] | 55 | .. function:: insort_right(a, x, lo=0, hi=len(a)) |
| 56 | insort(a, x, lo=0, hi=len(a)) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 57 | |
Georg Brandl | 0d8f073 | 2009-04-05 22:20:44 +0000 | [diff] [blame] | 58 | Similar to :func:`insort_left`, but inserting *x* in *a* after any existing |
| 59 | entries of *x*. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 60 | |
Raymond Hettinger | 20933e0 | 2010-09-01 06:58:25 +0000 | [diff] [blame] | 61 | .. seealso:: |
| 62 | |
| 63 | `SortedCollection recipe |
| 64 | <http://code.activestate.com/recipes/577197-sortedcollection/>`_ that uses |
| 65 | bisect to build a full-featured collection class with straight-forward search |
| 66 | methods and support for a key-function. The keys are precomputed to save |
| 67 | unnecessary calls to the key function during searches. |
| 68 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 69 | |
Raymond Hettinger | 87c9d6c | 2010-08-07 07:36:55 +0000 | [diff] [blame] | 70 | Searching Sorted Lists |
| 71 | ---------------------- |
| 72 | |
Raymond Hettinger | 20933e0 | 2010-09-01 06:58:25 +0000 | [diff] [blame] | 73 | The above :func:`bisect` functions are useful for finding insertion points but |
| 74 | can be tricky or awkward to use for common searching tasks. The following five |
Raymond Hettinger | 87c9d6c | 2010-08-07 07:36:55 +0000 | [diff] [blame] | 75 | functions show how to transform them into the standard lookups for sorted |
| 76 | lists:: |
| 77 | |
Raymond Hettinger | 20933e0 | 2010-09-01 06:58:25 +0000 | [diff] [blame] | 78 | def index(a, x): |
| 79 | 'Locate the leftmost value exactly equal to x' |
| 80 | i = bisect_left(a, x) |
| 81 | if i != len(a) and a[i] == x: |
| 82 | return i |
| 83 | raise ValueError |
Raymond Hettinger | 87c9d6c | 2010-08-07 07:36:55 +0000 | [diff] [blame] | 84 | |
Raymond Hettinger | 20933e0 | 2010-09-01 06:58:25 +0000 | [diff] [blame] | 85 | def find_lt(a, x): |
| 86 | 'Find rightmost value less than x' |
| 87 | i = bisect_left(a, x) |
| 88 | if i: |
| 89 | return a[i-1] |
| 90 | raise ValueError |
| 91 | |
| 92 | def find_le(a, x): |
| 93 | 'Find rightmost value less than or equal to x' |
| 94 | i = bisect_right(a, x) |
| 95 | if i: |
| 96 | return a[i-1] |
| 97 | raise ValueError |
| 98 | |
| 99 | def find_gt(a, x): |
| 100 | 'Find leftmost value greater than x' |
| 101 | i = bisect_right(a, x) |
| 102 | if i != len(a): |
Raymond Hettinger | 87c9d6c | 2010-08-07 07:36:55 +0000 | [diff] [blame] | 103 | return a[i] |
Raymond Hettinger | 20933e0 | 2010-09-01 06:58:25 +0000 | [diff] [blame] | 104 | raise ValueError |
Raymond Hettinger | 87c9d6c | 2010-08-07 07:36:55 +0000 | [diff] [blame] | 105 | |
Raymond Hettinger | 20933e0 | 2010-09-01 06:58:25 +0000 | [diff] [blame] | 106 | def find_ge(a, x): |
| 107 | 'Find leftmost item greater than or equal to x' |
| 108 | i = bisect_left(a, x) |
| 109 | if i != len(a): |
Raymond Hettinger | 87c9d6c | 2010-08-07 07:36:55 +0000 | [diff] [blame] | 110 | return a[i] |
Raymond Hettinger | 20933e0 | 2010-09-01 06:58:25 +0000 | [diff] [blame] | 111 | raise ValueError |
Raymond Hettinger | 87c9d6c | 2010-08-07 07:36:55 +0000 | [diff] [blame] | 112 | |
Raymond Hettinger | 87c9d6c | 2010-08-07 07:36:55 +0000 | [diff] [blame] | 113 | |
| 114 | Other Examples |
| 115 | -------------- |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 116 | |
| 117 | .. _bisect-example: |
| 118 | |
Raymond Hettinger | 20933e0 | 2010-09-01 06:58:25 +0000 | [diff] [blame] | 119 | The :func:`bisect` function can be useful for numeric table lookups. This |
| 120 | example uses :func:`bisect` to look up a letter grade for an exam score (say) |
| 121 | based on a set of ordered numeric breakpoints: 90 and up is an 'A', 80 to 89 is |
| 122 | a 'B', and so on:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 123 | |
Raymond Hettinger | 20933e0 | 2010-09-01 06:58:25 +0000 | [diff] [blame] | 124 | >>> def grade(score, breakpoints=[60, 70, 80, 90], grades='FDCBA'): |
| 125 | ... i = bisect(breakpoints, score) |
| 126 | ... return grades[i] |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 127 | ... |
Raymond Hettinger | 20933e0 | 2010-09-01 06:58:25 +0000 | [diff] [blame] | 128 | >>> [grade(score) for score in [33, 99, 77, 70, 89, 90, 100]] |
| 129 | ['F', 'A', 'C', 'C', 'B', 'A', 'A'] |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 130 | |
Raymond Hettinger | e046d2a | 2009-06-11 22:01:24 +0000 | [diff] [blame] | 131 | Unlike the :func:`sorted` function, it does not make sense for the :func:`bisect` |
| 132 | functions to have *key* or *reversed* arguments because that would lead to an |
Georg Brandl | 6faee4e | 2010-09-21 14:48:28 +0000 | [diff] [blame] | 133 | inefficient design (successive calls to bisect functions would not "remember" |
Raymond Hettinger | e046d2a | 2009-06-11 22:01:24 +0000 | [diff] [blame] | 134 | all of the previous key lookups). |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 135 | |
Raymond Hettinger | e046d2a | 2009-06-11 22:01:24 +0000 | [diff] [blame] | 136 | Instead, it is better to search a list of precomputed keys to find the index |
| 137 | of the record in question:: |
| 138 | |
| 139 | >>> data = [('red', 5), ('blue', 1), ('yellow', 8), ('black', 0)] |
Raymond Hettinger | 27352a5 | 2009-06-11 22:06:06 +0000 | [diff] [blame] | 140 | >>> data.sort(key=lambda r: r[1]) |
| 141 | >>> keys = [r[1] for r in data] # precomputed list of keys |
Raymond Hettinger | e046d2a | 2009-06-11 22:01:24 +0000 | [diff] [blame] | 142 | >>> data[bisect_left(keys, 0)] |
| 143 | ('black', 0) |
| 144 | >>> data[bisect_left(keys, 1)] |
| 145 | ('blue', 1) |
| 146 | >>> data[bisect_left(keys, 5)] |
| 147 | ('red', 5) |
| 148 | >>> data[bisect_left(keys, 8)] |
| 149 | ('yellow', 8) |
Raymond Hettinger | 87c9d6c | 2010-08-07 07:36:55 +0000 | [diff] [blame] | 150 | |