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

We have the following datastructures:

{:a => ["val1", "val2"], :b => ["valb1", "valb2"], ...}

And I want to turn that into

[{:a => "val1", :b => "valb1"}, {:a => "val2", :b => "valb2"}, ...]

And then back into the first form. Anybody with a nice looking implementation?

share|improve this question
did you mean {:a => ["val1", "val2", ...], :b => ["valb1", "valb2", ...], ...}?? so that the output will include, say, :c => "valc1", blah blah blah? – DigitalRoss Oct 29 '09 at 0:40
yeah, we can have :c => ["valc1", "valc2"] too and then the output with have :c => "valc1" for the first object, and :c => "valc2" for th second object... Also, each array may have more than just 2 elements. – Julien Genestoux Oct 29 '09 at 0:44

6 Answers

up vote 9 down vote accepted

This solution works with arbitrary numbers of values (val1, val2...valN):

{:a => ["val1", "val2"], :b => ["valb1", "valb2"]}.inject([]){|a, (k,vs)| 
  vs.each_with_index{|v,i| (a[i] ||= {})[k] = v} 
  a
}
# => [{:a=>"val1", :b=>"valb1"}, {:a=>"val2", :b=>"valb2"}]

[{:a=>"val1", :b=>"valb1"}, {:a=>"val2", :b=>"valb2"}].inject({}){|a, h| 
  h.each_pair{|k,v| (a[k] ||= []) << v}
  a
}
# => {:a=>["val1", "val2"], :b=>["valb1", "valb2"]}
share|improve this answer
1  
W00t! that works :) even with more items in the hash/arrays :) Good work! – Julien Genestoux Oct 29 '09 at 1:00

A functional approach gives the most compact solution for this kind of problems. Let's break it down:

>> input = {"a" => ["val1", "val2"], "b" => ["valb1", "valb2"]}
>> input.values.transpose
=> [["val1", "valb1"], ["val2", "valb2"]]

This looks promising, we have the values we needed for each hash, we should now zip them with the keys:

>> input.values.transpose.map { |vs| input.keys.zip(vs) }
=> [[["a", "val1"], ["b", "valb1"]], [["a", "val2"], ["b", "valb2"]]]

Good, we got the mapping [[(key, value)]] we were looking for, now let's finally build the hashes (Facets users will definitely prefer Enumerable#mash over the Hash constructor):

>> input.values.transpose.map { |vs| Hash[input.keys.zip(vs)] }
=> [{"a"=>"val1", "b"=>"valb1"}, {"a"=>"val2", "b"=>"valb2"}]
share|improve this answer
m = {}
a,b = Array(h).transpose
b.transpose.map { |y| [a, y].transpose.inject(m) { |m,x| m.merge Hash[*x] }}
share|improve this answer

Let's look closely what the data structure we are trying to convert between:

#Format A
[
 ["val1", "val2"],          :a
 ["valb1", "valb2"],        :b 
 ["valc1", "valc2"]         :c 
]
#Format B
[ :a        :b       :c
 ["val1", "valb1", "valc1"],
 ["val2", "valb2", "valc3"]
]

It is not diffculty to find Format B is the transpose of Format A in essential , then we can come up with this solution:

h={:a => ["vala1", "vala2"], :b => ["valb1", "valb2"], :c => ["valc1", "valc2"]}
sorted_keys =  h.keys.sort_by {|a,b| a.to_s <=> b.to_s}

puts sorted_keys.inject([])  {|s,e| s << h[e]}.transpose.inject([])   {|r, a| r << Hash[*sorted_keys.zip(a).flatten]}.inspect
#[{:b=>"valb1", :c=>"valc1", :a=>"vala1"}, {:b=>"valb2", :c=>"valc2", :a=>"vala2"}]
share|improve this answer

This will work assuming all the arrays in the original hash are the same size:

hash_array = hash.first[1].map { {} }
hash.each do |key,arr|
  hash_array.zip(arr).each {|inner_hash, val| inner_hash[key] = val}
end
share|improve this answer

You could use inject to build an array of hashes.

hash = { :a => ["val1", "val2"], :b => ["valb1", "valb2"] }
array = hash.inject([]) do |pairs, pair|
  pairs << { pair[0] => pair[1] }
  pairs
end
array.inspect # => "[{:a=>["val1", "val2"]}, {:b=>["valb1", "valb2"]}]"

Ruby documentation has a few more examples of working with inject.

share|improve this answer
hum... can you tell me more? – Julien Genestoux Oct 29 '09 at 0:50
Thanks... but sorry, that didn't work with more items in the hash and arrays. – Julien Genestoux Oct 29 '09 at 1:00

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.