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