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

In another thread, I saw the time complexity of a binary-heap weighted random sample is equal to O(n * log(m)) where n is the number of choices and m is the number of nodes to choose from.

I was wondering about the time complexity of an unweighted random sample which is used by Python as random.sample. Is the time complexity simply O(n) or is it something else entirely?

share|improve this question
5  
It might be illuminating to read the source code for the random module. The random.sample() function is defined on line 267. – Li-aung Yip May 7 '12 at 14:05

1 Answer

up vote 1 down vote accepted

Python source: random.py (line 267).

Here's the relevant bit:

   315             selected = set()
   316             selected_add = selected.add
   317             for i in range(k):
   318                 j = randbelow(n)
   319                 while j in selected:
   320                     j = randbelow(n)
   321                 selected_add(j)
   322                 result[i] = population[j]

It basically "rolls the dice" for a random index into population. If it gets an index that's already in the set selected, it re-rolls. Rinse, lather and repeat k times (where k is the number of samples you asked for.)

It appears to be O(n) in the size of the requested number of samples. There are some optimisations for small sets, but the meat of the thing is the main loop above.


Edit:

I believe line 305-313 are a special case for when the number of samples requested, k, is a large proportion of the total population n. Instead of rolling for random elements from the entire population (and re-rolling if we collide with an element we already selected), we explicitly maintain a list of elements we have yet to select. We are guaranteed to get a new element every time, but the tradeoff is that we have to maintain the list.

If I'm interpreting this wrong, feel free to comment below.

   303         result = [None] * k
   304         setsize = 21        # size of a small set minus size of an empty list
   305         if k > 5:
   306             setsize += 4 ** _ceil(_log(k * 3, 4)) # table size for big sets
   307         if n <= setsize:
   308             # An n-length list is smaller than a k-length set
   309             pool = list(population)
   310             for i in range(k):         # invariant:  non-selected at [0,n-i)
   311                 j = randbelow(n-i)
   312                 result[i] = pool[j]
   313                 pool[j] = pool[n-i-1]   # move non-selected item into vacancy
   314         else:
   315             selected = set()
   316             selected_add = selected.add
   317             for i in range(k):
   318                 j = randbelow(n)
   319                 while j in selected:
   320                     j = randbelow(n)
   321                 selected_add(j)
   322                 result[i] = population[j]
   323         return result
share|improve this answer
1  
I don't think this is O(n). When you try to sample close to n elements from an n-element list, then selected fills up, causing more and more re-rolls of the die to be needed to find a new index. I'm not exactly sure about the complexity of that, but my hunch is that the expected time of the inner loop is O(n), causing the whole thing to be quadratic. – larsmans May 7 '12 at 14:22
This doesn't seem to be O(k) as you say, due to the while loop. In fact, if k is close to n then this will take O(n*logn) in average. The worst-case performance is infinite of course. – interjay May 7 '12 at 14:24
@larsmans: The worst case is if you select n elements from a population of n. I believe the code has a special case for that, which maintains a "pool of items remaining" (so there are no "cache misses") instead of a "list of items already drawn". I can't quite grok what it's trying to do, though. – Li-aung Yip May 7 '12 at 14:24
I don't see that case in the code. I do see special cases based on some magic constants, which seem to exploit deep knowledge of Python's collection implementations. – larsmans May 7 '12 at 14:29
@larsmans: see edit for my interpretation. Every chance that I'm wrong, of course. – Li-aung Yip May 7 '12 at 14:30
show 3 more comments

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.