ruby 更好的Ruby Enumerable模块

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ruby 更好的Ruby Enumerable模块相关的知识,希望对你有一定的参考价值。

module Enumerable
  # Sort by frequency of occurrence
  def sort_by_frequency
    histogram = inject(Hash.new(0)) {|hash, x| hash[x] += 1; hash}
    sort_by {|x| [histogram[x] * -1, x]}
  end
end

以上是关于ruby 更好的Ruby Enumerable模块的主要内容,如果未能解决你的问题,请参考以下文章

将 Enumerable 转换为 Hash 的 Ruby 库函数

ruby is_enumerable.rb

ruby 使用Enumerable逐行迭代文件

ruby 使用Enumerable逐行迭代文件

Ruby:字符串在 1.9 中不再混入 Enumerable

ruby example_of_is_enumerable.rb