bisect
index
/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/bisect.py
Module Docs

Bisection algorithms.

 
Functions
       
bisect(...)
bisect(a, x[, lo[, hi]]) -> index
bisect_right(a, x[, lo[, hi]]) -> index
 
Return the index where to insert item x in list a, assuming a is sorted.
 
The return value i is such that all e in a[:i] have e <= x, and all e in
a[i:] have e > x.  So if x already appears in the list, i points just
beyond the rightmost x already there
 
Optional args lo (default 0) and hi (default len(a)) bound the
slice of a to be searched.
bisect_left(...)
bisect_left(a, x[, lo[, hi]]) -> index
 
Return the index where to insert item x in list a, assuming a is sorted.
 
The return value i is such that all e in a[:i] have e < x, and all e in
a[i:] have e >= x.  So if x already appears in the list, i points just
before the leftmost x already there.
 
Optional args lo (default 0) and hi (default len(a)) bound the
slice of a to be searched.
bisect_right(...)
bisect(a, x[, lo[, hi]]) -> index
bisect_right(a, x[, lo[, hi]]) -> index
 
Return the index where to insert item x in list a, assuming a is sorted.
 
The return value i is such that all e in a[:i] have e <= x, and all e in
a[i:] have e > x.  So if x already appears in the list, i points just
beyond the rightmost x already there
 
Optional args lo (default 0) and hi (default len(a)) bound the
slice of a to be searched.
insort(...)
insort(a, x[, lo[, hi]])
insort_right(a, x[, lo[, hi]])
 
Insert item x in list a, and keep it sorted assuming a is sorted.
 
If x is already in a, insert it to the right of the rightmost x.
 
Optional args lo (default 0) and hi (default len(a)) bound the
slice of a to be searched.
insort_left(...)
insort_left(a, x[, lo[, hi]])
 
Insert item x in list a, and keep it sorted assuming a is sorted.
 
If x is already in a, insert it to the left of the leftmost x.
 
Optional args lo (default 0) and hi (default len(a)) bound the
slice of a to be searched.
insort_right(...)
insort(a, x[, lo[, hi]])
insort_right(a, x[, lo[, hi]])
 
Insert item x in list a, and keep it sorted assuming a is sorted.
 
If x is already in a, insert it to the right of the rightmost x.
 
Optional args lo (default 0) and hi (default len(a)) bound the
slice of a to be searched.