Last active
October 7, 2017 02:26
-
-
Save schweigert/3fda810462c3422232ccb53575312058 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 = [:udesc, :matheus, :marlon, :exemplo_man] | |
conjunto = UnionFind.new nodos | |
# Curtem a página UDESC | |
conjunto.union :udesc, :matheus | |
conjunto.union :udesc, :marlon | |
conjunto.union :udesc, :exemplo_man | |
puts "Quantos likes a UDESC tem?" | |
puts conjunto.size?(:udesc) - 1 | |
puts "Devo sugerir amizade entre 'Exemplo Man' e 'Marlon'?" | |
puts conjunto.connected?(:marlon, :exemplo_man) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment