码迷,mamicode.com
首页 > 编程语言 > 详细

Python sorted list的实现

时间:2017-07-22 14:39:41      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:sorted   sort   com   bisect   不清楚   elf   self   http   lis   

Python sorted list的实现


具体思路是用二分保list有序+插入

class SortedList(list):
    K = -1

    def __init__(self, K=-1):
        list.__init__(self)
        if K != -1: self.K = K

    def append(self, x):
        bisect.insort(self, x)
        if self.K != -1:
            if len(self)==self.K+1:
                self.pop(0)

这里还有一个限size的操作,之前写了一个self=self[1:],结果不对。还不清楚是为什么,留一个问题在这里。

参考

Python sorted list的实现

标签:sorted   sort   com   bisect   不清楚   elf   self   http   lis   

原文地址:http://www.cnblogs.com/stevendes1/p/7221078.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!