摘要: bisect是python自带的标准库。 其中bisect_left是插入到左边,bisect_right和bisect是插入到右边 >>> a = [0, 1, 2, 3, 4] >>> x = 2 >>> index = bisect.bisect(a,x) >>> index 3 >>> a. 阅读全文
posted @ 2022-04-03 23:53 swtt 阅读(77) 评论(0) 推荐(0) 编辑