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.

Here's a strange question for you guys,

I have a nice sorted list that I wish to randomize. How would i go about doing that?

In my application, i have a function that returns a list of points that describe the outline of a discretized object. Due to the way the problem is solved, the function returns a nice ordered list. i have a second boundary described in math and want to determine if the two objects intersect each other. I simply itterate over the points and determine if any one point is inside the mathematical boundary.

The method works well but i want to increase speed by randomizing the point data. Since it is likely that that my mathematical boundary will be overlapped by a series of points that are right beside each other, i think it would make sense to check a randomized list rather than iterating over a nice sorted one (as it only takes a single hit to declare an intersection).

So, any ideas on how i would go about randomizing an ordered list?

share|improve this question
Are You sure the time spent on randomization is worth it? If not, measure :) – Maciej Hehl Apr 22 '10 at 16:54

6 Answers

up vote 9 down vote accepted

Use std::random_shuffle. If you want to implement the method yourself you should look at the Fisher-Yates shuffle.

share|improve this answer
1  
Ahh thanks! Glad I decided to be lazy and ask the question before attempting to reinvent the wheel...again... – Faken Apr 22 '10 at 16:47
The standard random_shuffle does not work on bidirectional iterators. – SChepurin Mar 11 at 16:04
@SChepurin yes, that's why I explicitly mention the Fisher Yates shuffle. Unfortunately most randomization algorithms will be impossibly slow on non-random-access containers and are not feasible. – pmr Mar 15 at 15:53

You can try the random_shuffle algorithm, but note that it won't work on list since it requires random access iterators. You can use it on a vector or deque, though.

share|improve this answer

Assuming your "list" doesn't mean a linked list, but instead means something that supports random access (e.g., an array, std::vector, or std::deque), std::random_shuffle might be useful.

share|improve this answer

But a key question would be whether the runtime required to randomize the list might not be more than the runtime to traverse it sequentially.

Perhaps what you really need to do is not actually randomize it, but rather read it in some order other than front to back. For example, if the list has n members, perhaps you should process 1, n, 2, n-1, 3, n-2, etc. or 1, n/2, 2, n/2 + 1, 3, n/2 +2, etc.

If you always have the same number of points or if the number of points falls into a small finite set, you could produce an order of point evaluation for each possible number of points once in advance, either truly random or perhaps carefully calculated in some way.

share|improve this answer
I think its a good idea to create a brand new randomized list. Worst case, i will need to iterate over the list 1 million times. – Faken Apr 22 '10 at 16:53
std::random_shuffle(thelist.begin(), thelist.end());
share|improve this answer
int array[N];

for(int i = N - 1; i > 0; i--) {
  int j = rand() % i;
  int tmp = array[i]; array[i] = array[j]; array[j] = i;
}
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.