How to sort not simple hash (hash of hashes) - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T08:04:19Zhttp://stackoverflow.com/feeds/question/362105http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/362105/how-to-sort-not-simple-hash-hash-of-hashes2How to sort not simple hash (hash of hashes)Kavu2008-12-12T07:23:37Z2008-12-13T12:53:48Z
<p>Hi all! I have a Hash like this</p>
<pre><code>{ 55 => {:value=>61, :rating=>-147},
89 => {:value=>72, :rating=>-175},
78 => {:value=>64, :rating=>-155},
84 => {:value=>90, :rating=>-220},
95 => {:value=>39, :rating=>-92},
46 => {:value=>97, :rating=>-237},
52 => {:value=>73, :rating=>-177},
64 => {:value=>69, :rating=>-167},
86 => {:value=>68, :rating=>-165},
53 => {:value=>20, :rating=>-45}
}
</code></pre>
<p>How can i sort it by <strong><em>:rating</em></strong>? Or maybe i should use some different structure?</p>
http://stackoverflow.com/questions/362105/how-to-sort-not-simple-hash-hash-of-hashes/362133#3621334Answer by Gareth for How to sort not simple hash (hash of hashes)Gareth2008-12-12T07:43:34Z2008-12-13T09:52:43Z<p>Hashes in Ruby can't be sorted (at least not before 1.9)</p>
<p>This means that looping through a Hash won't necessarily yield the information in the right order for you. However, it's trivial to loop through Hashed data in a particular order by converting it to an Array first, and in fact calling the sort methods on a Hash will convert it into an Array for you:</p>
<pre><code>>> { :a => 4, :b => 12, :c => 3, :d => 8 }.sort_by { |key, value| value }
=> [[:c, 3], [:a, 4], [:d, 8], [:b, 12]]
</code></pre>
<p>So in your case:</p>
<pre><code>hsh.sort_by {|key, ratings| ratings[:rating] }
</code></pre>
http://stackoverflow.com/questions/362105/how-to-sort-not-simple-hash-hash-of-hashes/362137#3621371Answer by danieltalsky for How to sort not simple hash (hash of hashes)danieltalsky2008-12-12T07:44:30Z2008-12-12T07:44:30Z<p>There might be a better data structure, but (I'm assuming this is ruby) it's possible to do in Ruby by using the inline sort style to basically tell it how to compare the two. Here's a concrete example:</p>
<pre><code>my_hash = {
55 => {:value=>61, :rating=>-147},
89 => {:value=>72, :rating=>-175},
78 => {:value=>64, :rating=>-155},
84 => {:value=>90, :rating=>-220},
95 => {:value=>39, :rating=>-92},
46 => {:value=>97, :rating=>-237},
52 => {:value=>73, :rating=>-177},
64 => {:value=>69, :rating=>-167},
86 => {:value=>68, :rating=>-165},
53 => {:value=>20, :rating=>-45}
}
puts "MY HASH"
my_hash.each do |local|
puts local
end
sorted_hash = my_hash.sort { | leftval, rightval | rightval[1][:rating]<=>leftval[1][:rating] }
puts "SORTED HASH"
sorted_hash.each do |local|
puts local
end
</code></pre>
http://stackoverflow.com/questions/362105/how-to-sort-not-simple-hash-hash-of-hashes/365178#3651782Answer by Milan Novota for How to sort not simple hash (hash of hashes)Milan Novota2008-12-13T12:53:48Z2008-12-13T12:53:48Z<p>I would change the data structure to an array of hashes:</p>
<pre><code>my_array =
[
{:id => 78, :value=>64, :rating=>-155},
{:id => 84, :value=>90, :rating=>-220},
{:id => 95, :value=>39, :rating=>-92}
]
</code></pre>
<p>You can sort this kind of structure easily with</p>
<pre><code>my_array.sort_by { |record| record[:rating] }
</code></pre>
<p>To get the hash-like functionality of fetching a record by id you can define a new method on my_array:</p>
<pre><code>def my_array.find_by_id(id)
self.find { |hash| hash[:id] == id }
end
</code></pre>
<p>so after that you can do </p>
<pre><code>my_array.find_by_id(id)
</code></pre>
<p>instead of</p>
<pre><code>my_hash[id]
</code></pre>