python中的bisect模块

Posted sbj123456789

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中的bisect模块相关的知识,希望对你有一定的参考价值。

主要函数

bisect.bisect_left(data, 4, lo=0, hi=len(a))  # 在data找到第一个大于等于4的数的index(即插入4后左边数小于4,右边数大于等于4)

bisect.bisect_right(data, 4)  # 在data找到第一个大于4的数的index(即插入4后左边数小于等于4,右边数大于4)

bisect.bisect(data, 4)  # 和bisect_right一样

 

 

以上函数的使用前提是data已经从小到大排好序 

 

 

参考:

https://docs.python.org/2/library/bisect.html

https://www.cnblogs.com/zhaoyingjie/p/9468935.html

以上是关于python中的bisect模块的主要内容,如果未能解决你的问题,请参考以下文章

python 模块之 bisect

python的排序模块bisect

python的排序模块bisect

Python 二分查找与 bisect 模块

Python3标准库:bisect维护有序列表

Python中bisect的使用方法