Created
October 7, 2017 01:47
-
-
Save schweigert/1810f225e4f699ba37a331a97e814de0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'unionf' | |
include Unionf | |
nodos = [1,2,3,4,5] | |
conjunto = UnionFind.new nodos | |
lista_adj = { | |
1 => [2,4], | |
2 => [1,3,5], | |
3 => [2], | |
4 => [1,5], | |
5 => [2,4] | |
} | |
lista_adj.each_key do |k| | |
lista_adj[k].each { |n| conjunto.union k, n } | |
end | |
puts 'Existe caminho de 1 para 5?' | |
puts conjunto.connected? 1,5 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment