vote up 1 vote down star
1

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?

flag

80% accept rate
did you mean {:a => ["val1", "val2", ...], :b => ["valb1", "valb2", ...], ...}?? so that the output will include, say, :c => "valc1", blah blah blah? – DigitalRoss Oct 29 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 at 0:44

5 Answers

vote up 3 vote down check

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"]}
link|flag
W00t! that works :) even with more items in the hash/arrays :) Good work! – Julien Genestoux Oct 29 at 1:00
vote up 0 vote down

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
link|flag
vote up 0 vote down

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.

link|flag
hum... can you tell me more? – Julien Genestoux Oct 29 at 0:50
Thanks... but sorry, that didn't work with more items in the hash and arrays. – Julien Genestoux Oct 29 at 1:00
vote up 0 vote down

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"}]
link|flag
vote up 0 vote down
m = {}
a,b = Array(h).transpose
b.transpose.map { |y| [a, y].transpose.inject(m) { |m,x| m.merge Hash[*x] }}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.