Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to create an efficient circular buffer in python (with the goal of taking averages of the integer values in the buffer).

Is this an efficient way to use a list to collect values?

def add_to_buffer( self, num ):
    self.mylist.pop( 0 )
    self.mylist.append( num )

What would be more efficient (and why)?

share|improve this question

2 Answers

up vote 39 down vote accepted

I would use collections.deque with a maxlen arg

>>> import collections
>>> d = collections.deque(maxlen=10)
>>> d
deque([], maxlen=10)
>>> for i in xrange(20):
...     d.append(i)
... 
>>> d
deque([10, 11, 12, 13, 14, 15, 16, 17, 18, 19], maxlen=10)

There is a recipe in the docs for deque that is similar to what you want. My assertion that it's the most efficient rests entirely on the fact that it's implemented in C by an incredibly skilled crew that is in the habit of cranking out top notch code.

share|improve this answer
3  
+1 Yes it's the nice batteries included way. Operations for the circular buffer are O(1) and as you say the extra overhead is in C, so should still be quite fast – gnibbler Nov 11 '10 at 9:38

popping from the head of a list causes the whole list to be copied, so is inefficient

You should instead use a list/array of fixed size and an index which moves through the buffer as you add/remove items

share|improve this answer
Agree. No matter how elegant or inelegant it may look or whatever language is used. In reality, the less you bother garbage collector (or heap manager or paging/mapping mechanisms or whatever does actual memory magic) the better. – Rocket Surgeon Nov 11 '10 at 4:56
@RocketSurgeon It's not magic, it's just that it's an array whose first element is deleted. So for an array of size n this means n-1 copy operations. No garbage collector or similar device is involved here. – Christian Sep 26 '12 at 11:49
I agree. Doing so is also much easier than some people think. Just use an ever increasing counter, and use the modulo operator (% arraylen) when accessing the item. – Andre Blum Dec 6 '12 at 17:41

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.