企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
### 导航 - [索引](../genindex.xhtml "总目录") - [模块](../py-modindex.xhtml "Python 模块索引") | - [下一页](array.xhtml "array --- Efficient arrays of numeric values") | - [上一页](heapq.xhtml "heapq --- 堆队列算法") | - ![](https://box.kancloud.cn/a721fc7ec672275e257bbbfde49a4d4e_16x16.png) - [Python](https://www.python.org/) » - zh\_CN 3.7.3 [文档](../index.xhtml) » - [Python 标准库](index.xhtml) » - [数据类型](datatypes.xhtml) » - $('.inline-search').show(0); | # [`bisect`](#module-bisect "bisect: Array bisection algorithms for binary searching.") --- Array bisection algorithm **Source code:** [Lib/bisect.py](https://github.com/python/cpython/tree/3.7/Lib/bisect.py) \[https://github.com/python/cpython/tree/3.7/Lib/bisect.py\] - - - - - - This module provides support for maintaining a list in sorted order without having to sort the list after each insertion. For long lists of items with expensive comparison operations, this can be an improvement over the more common approach. The module is called [`bisect`](#module-bisect "bisect: Array bisection algorithms for binary searching.") because it uses a basic bisection algorithm to do its work. The source code may be most useful as a working example of the algorithm (the boundary conditions are already right!). 定义了以下函数: `bisect.``bisect_left`(*a*, *x*, *lo=0*, *hi=len(a)*)Locate the insertion point for *x* in *a* to maintain sorted order. The parameters *lo* and *hi* may be used to specify a subset of the list which should be considered; by default the entire list is used. If *x* is already present in *a*, the insertion point will be before (to the left of) any existing entries. The return value is suitable for use as the first parameter to `list.insert()` assuming that *a* is already sorted. The returned insertion point *i* partitions the array *a* into two halves so that `all(val < x for val in a[lo:i])` for the left side and `all(val >= x for val in a[i:hi])` for the right side. `bisect.``bisect_right`(*a*, *x*, *lo=0*, *hi=len(a)*)`bisect.``bisect`(*a*, *x*, *lo=0*, *hi=len(a)*)Similar to [`bisect_left()`](#bisect.bisect_left "bisect.bisect_left"), but returns an insertion point which comes after (to the right of) any existing entries of *x* in *a*. The returned insertion point *i* partitions the array *a* into two halves so that `all(val <= x for val in a[lo:i])` for the left side and `all(val > x for val in a[i:hi])` for the right side. `bisect.``insort_left`(*a*, *x*, *lo=0*, *hi=len(a)*)Insert *x* in *a* in sorted order. This is equivalent to `a.insert(bisect.bisect_left(a, x, lo, hi), x)` assuming that *a* is already sorted. Keep in mind that the O(log n) search is dominated by the slow O(n) insertion step. `bisect.``insort_right`(*a*, *x*, *lo=0*, *hi=len(a)*)`bisect.``insort`(*a*, *x*, *lo=0*, *hi=len(a)*)Similar to [`insort_left()`](#bisect.insort_left "bisect.insort_left"), but inserting *x* in *a* after any existing entries of *x*. 参见 [SortedCollection recipe](https://code.activestate.com/recipes/577197-sortedcollection/) \[https://code.activestate.com/recipes/577197-sortedcollection/\] that uses bisect to build a full-featured collection class with straight-forward search methods and support for a key-function. The keys are precomputed to save unnecessary calls to the key function during searches. ## Searching Sorted Lists The above [`bisect()`](#module-bisect "bisect: Array bisection algorithms for binary searching.") functions are useful for finding insertion points but can be tricky or awkward to use for common searching tasks. The following five functions show how to transform them into the standard lookups for sorted lists: ``` def index(a, x): 'Locate the leftmost value exactly equal to x' i = bisect_left(a, x) if i != len(a) and a[i] == x: return i raise ValueError def find_lt(a, x): 'Find rightmost value less than x' i = bisect_left(a, x) if i: return a[i-1] raise ValueError def find_le(a, x): 'Find rightmost value less than or equal to x' i = bisect_right(a, x) if i: return a[i-1] raise ValueError def find_gt(a, x): 'Find leftmost value greater than x' i = bisect_right(a, x) if i != len(a): return a[i] raise ValueError def find_ge(a, x): 'Find leftmost item greater than or equal to x' i = bisect_left(a, x) if i != len(a): return a[i] raise ValueError ``` ## Other Examples The [`bisect()`](#module-bisect "bisect: Array bisection algorithms for binary searching.") function can be useful for numeric table lookups. This example uses [`bisect()`](#module-bisect "bisect: Array bisection algorithms for binary searching.") to look up a letter grade for an exam score (say) based on a set of ordered numeric breakpoints: 90 and up is an 'A', 80 to 89 is a 'B', and so on: ``` >>> def grade(score, breakpoints=[60, 70, 80, 90], grades='FDCBA'): ... i = bisect(breakpoints, score) ... return grades[i] ... >>> [grade(score) for score in [33, 99, 77, 70, 89, 90, 100]] ['F', 'A', 'C', 'C', 'B', 'A', 'A'] ``` Unlike the [`sorted()`](functions.xhtml#sorted "sorted") function, it does not make sense for the [`bisect()`](#module-bisect "bisect: Array bisection algorithms for binary searching.")functions to have *key* or *reversed* arguments because that would lead to an inefficient design (successive calls to bisect functions would not "remember" all of the previous key lookups). Instead, it is better to search a list of precomputed keys to find the index of the record in question: ``` >>> data = [('red', 5), ('blue', 1), ('yellow', 8), ('black', 0)] >>> data.sort(key=lambda r: r[1]) >>> keys = [r[1] for r in data] # precomputed list of keys >>> data[bisect_left(keys, 0)] ('black', 0) >>> data[bisect_left(keys, 1)] ('blue', 1) >>> data[bisect_left(keys, 5)] ('red', 5) >>> data[bisect_left(keys, 8)] ('yellow', 8) ``` ### 导航 - [索引](../genindex.xhtml "总目录") - [模块](../py-modindex.xhtml "Python 模块索引") | - [下一页](array.xhtml "array --- Efficient arrays of numeric values") | - [上一页](heapq.xhtml "heapq --- 堆队列算法") | - ![](https://box.kancloud.cn/a721fc7ec672275e257bbbfde49a4d4e_16x16.png) - [Python](https://www.python.org/) » - zh\_CN 3.7.3 [文档](../index.xhtml) » - [Python 标准库](index.xhtml) » - [数据类型](datatypes.xhtml) » - $('.inline-search').show(0); | © [版权所有](../copyright.xhtml) 2001-2019, Python Software Foundation. Python 软件基金会是一个非盈利组织。 [请捐助。](https://www.python.org/psf/donations/) 最后更新于 5月 21, 2019. [发现了问题](../bugs.xhtml)? 使用[Sphinx](http://sphinx.pocoo.org/)1.8.4 创建。