12件ヒット
[1-12件を表示]
(0.189秒)
検索結果
先頭1件
-
tsort (7.0)
-
tsort はトポロジカルソートと強連結成分に関するモジュールを提供します。
...結成分に関するモジュールを提供します。
=== Example
//emlist[][ruby]{
require 'tsort'
class Hash
include TSort
alias tsort_each_node each_key
def tsort_each_child(node, &block)
fetch(node).each(&block)
end
end
{1=>[2, 3], 2=>[3], 3=>[], 4=>[]}.tsort
#=> [3, 2, 1, 4]...