Skip to content

Instantly share code, notes, and snippets.

@schweigert
Last active October 7, 2017 02:26
Show Gist options
  • Save schweigert/3fda810462c3422232ccb53575312058 to your computer and use it in GitHub Desktop.
Save schweigert/3fda810462c3422232ccb53575312058 to your computer and use it in GitHub Desktop.
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