當values都是整形時,按照Hash的Values排序:數組
h = {'a'=>1,'b'=>2,'c'=>5,'d'=>4}spa
h.sort {|a,b| a[1]<=>b[1]}對象
輸出:[["a", 1], ["b", 2], ["d", 4], ["c", 5]]排序
當咱們須要對Hash進行排序時,不能像數組那樣簡單的使用sort方法,由於數組中的數據類型都是同樣的(整型),Hash中的數據類型可能並不徹底同樣,如整數類型和字符串類型就無法一塊兒排序,此時就須要咱們進行處理,以下(若是Hash中的數據類型所有相同能夠不進行以下處理):three
def sorted_hash(aHash)字符串
return aHash.sort{hash
|a,b| a.to_s <=> b.to_s class
}數據類型
End方法
h1 = {1=>'one', 2=>'two', 3=> 'three'}
h2 = {6=>'six', 5=>'five', 4=> 'four'}
h3 = {'one'=>'A', 'two'=>'B','three'=>'C'}
h4 = h1.merge(h2) #合併hash
h5 = h1.merge(h3)
def sorted_hash(aHash)
return aHash.sort{|a,b| a.to_s <=> b.to_s }
end
p(h4)
p(h4.sort)
p(h5)
p(sorted_hash(h5))
----------------Result---------------
{5=>"five", 6=>"six", 1=>"one", 2=>"two", 3=>"three", 4=>"four"}
[[1, "one"], [2, "two"], [3, "three"], [4, "four"], [5, "five"], [6, "six"]]
{"two"=>"B", "three"=>"C", 1=>"one", 2=>"two", "one"=>"A", 3=>"three"}
[[1, "one"], [2, "two"], [3, "three"], ["one", "A"], ["three", "C"], ["two", "B"]]
事實上Hash的sort方法是把一個Hash對象轉換成以[key,value]爲單個元素的一個數組,而後再用數組的sort方法進行排序。