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

I have an array of values, and an array which determines the order.

How can I quickly re-arrange the array in the given order?

data = ['0','1','2','3','4','5']

order = [3,1,2,0,4,5]

I want:

data = ['3','1','2','0','4','5']
share|improve this question

3 Answers

up vote 4 down vote accepted
data =  ["0", "1", "2", "3", "4", "5"]

order = [3, 1, 2, 0, 4, 5]

> order.map{|x| data[x]}
 => ["3", "1", "2", "0", "4", "5"]

If you are not sure if the indices are correct, you can do this:

> order.map{|x| data.fetch(x)}     # will raise an exception if index out of bounds
 => ["3", "1", "2", "0", "4", "5"]
share|improve this answer
brilliant! thanks! Is there a way to do it inline? – user985823 Oct 29 '11 at 2:23
4  
I use this approach because it allows me to use fetch which can raise an exception if it doesn't work. – Andrew Grimm Oct 29 '11 at 2:55
@AndrewGrimm thanks for the tip! I ended up using this approach, because I can use exceptions in case an index is out of bounds. – user985823 Oct 31 '11 at 3:29

You can use the specifically for this kind of task designed method values_at:

data = ['0','1','2','3','4','5']
order = [3,1,2,0,4,5]

data.values_at *order
# => ["3", "1", "2", "0", "4", "5"] 
share|improve this answer
neat! why is the * needed in front of order? – user985823 Oct 29 '11 at 2:26
2  
@user985823 Because values_at does not take an array as its argument, but an arbitrary number of parameters. The * causes each value of the order array to be passed as a parameter to the method. – Phrogz Oct 29 '11 at 2:30
@Phrogz thanks! – user985823 Oct 29 '11 at 2:32
Great and short answer! But I went with the other solution, because it can raise an exception if an index is wrong. I wish I could mark two questions as correct – user985823 Nov 2 '11 at 5:46

Not as good as @Jakub's answer using Array#values_at (which I would argue should be the accepted answer) but here are some other fun alternatives:

p data.sort_by.with_index{ |d,i| order[i] }
p data.zip(order).sort_by(&:last).map(&:first)
share|improve this answer

Your Answer

 
discard

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