Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

By which I mean a structure with:

  • O(log n) complexity for x.push() operations
  • O(log n) complexity to find an element
  • O(n) complexity to compute list(x) which will be sorted

I also had a related question about performance of list(...).insert(...) which is now here.

share|improve this question
memcpy is still a O(n) operation. I am not sure how Python implements lists exactly, but my bet would be that they are stored in contiguous memory (certainly not as a linked list). If that is indeed so, the insertion using bisect which you demonstrate will have complexity O(n). – Stephan202 Jul 10 '09 at 15:38
...and then the example was gone ;) – Stephan202 Jul 10 '09 at 15:40
@stephan202: Sorry, I thought it deserves a qeustion in itself as a completely separate issue! – ilya n. Jul 10 '09 at 15:43

4 Answers

up vote 20 down vote accepted

The standard Python list is not sorted in any form. The standard heapq module can be used to append in O(log n) and remove the smallest one in O(log n), but isn't a sorted list in your defition.

There are various implementations of balanced trees for Python that meet your requirements, e.g. rbtree, RBTree, or pyavl.

share|improve this answer
1  
+1 for rbtree, it works very well (but contains native code; not pure python, not so easy to deploy perhaps) – Will May 13 '11 at 12:34

Though it does not (yet) provide a custom search function, the heapq module may suit your needs. It implements a heap queue using a regular list. You'd have to write your own efficient membership test that makes use of the queue's internal structure (that can be done in O(log n), I'd say...). There is one downside: extracting a sorted list has complexity O(n log n).

share|improve this answer
It's nice but hard to bisect. – ilya n. Jul 10 '09 at 15:46
2  
How can there be an O(log n) membership test in a heap? If you are looking for value x, you can stop looking down a branch if you find something larger than x, but for a random value of x it is 50% likely to be at a leaf, and you probably can't prune much. – markets Nov 12 '10 at 15:06

Though I have still never checked the "big O" speeds of basic Python list operations, the bisect standard module is probably also worth mentioning in this context:

import bisect
L = [0, 100]

bisect.insort(L, 50)
bisect.insort(L, 20)
bisect.insort(L, 21)

print L
## [0, 20, 21, 50, 100]

i = bisect.bisect(L, 20)
print L[i-1], L[i]
## 20, 21

PS. Ah, sorry, bisect is mentioned in the referenced question. Still, I think it won't be much harm if this information will be here )

PPS. And CPython lists are actually arrays (not, say, skiplists or etc) . Well, I guess they have to be something simple, but as for me, the name is a little bit misleading.


So, if I am not mistaken, the bisect/list speeds would probably be:

  • for a push(): O(n) for the worst case ;
  • for a search: if we consider the speed of array indexing to be O(1), search should be an O(log(n)) operation ;
  • for the list creation: O(n) should be the speed of the list copying, otherwise it's O(1) for the same list )

Upd. Following a discussion in the comments, let me link here these SO questions: How is Python's List Implemented and What is the runtime complexity of python list functions

share|improve this answer
push() should be in O(log n) since the list is already sorted. – estani Apr 11 '12 at 12:05
1  
may be I should have said "for an insert op". anyway, that was about a year ago so now I can easily mix things up or miss something – ジョージ Apr 13 '12 at 4:53
You can always insert a value into a sorted list in O(log n), see binary search. push() is defined as an insert operation. – estani Apr 16 '12 at 16:29
1  
True. But while finding the insert location would indeed take O(log n) ops, the actual insert (i.e. adding the element to the data structure) probably depends on that structure (think inserting an element in a sorted array). And as Python lists are actually arrays, this may take O(n). Due to the size limit for the comments, I will link two related SO questions from the text of the answer (see above). – ジョージ Apr 22 '12 at 0:35
Good argument. I wasn't aware list where handled as arrays in Python. – estani Apr 23 '12 at 12:57
show 1 more comment

It may not be hard to implement your own sortlist on Python. Below is a proof of concept:

import bisect

class sortlist:
    def __init__(self, list):
        self.list = list
        self.sort()
    def sort(self):
        l = []
        for i in range(len(self.list)):
            bisect.insort(l, self.list[i])
        self.list = l
        self.len = i
    def insert(self, value):
        bisect.insort(self.list, value)
        self.len += 1
    def show(self):
        print self.list
    def search(self,value):
        left = bisect.bisect_left(self.list, value)
        if abs(self.list[min([left,self.len-1])] - value) >= abs(self.list[left-1] - value):
            return self.list[left-1]
        else:
            return self.list[left]

list = [101, 3, 10, 14, 23, 86, 44, 45, 45, 50, 66, 95, 17, 77, 79, 84, 85, 91, 73]
slist = sortlist(list)
slist.show()
slist.insert(99)
slist.show()
print slist.search(100000000)
print slist.search(0)
print slist.search(56.7)

========= Results ============

[3, 10, 14, 17, 23, 44, 45, 45, 50, 66, 73, 77, 79, 84, 85, 86, 91, 95, 101]

[3, 10, 14, 17, 23, 44, 45, 45, 50, 66, 73, 77, 79, 84, 85, 86, 91, 95, 99, 101]

101

3

50

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.