-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkruskal.rb
60 lines (44 loc) · 1.19 KB
/
kruskal.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
class Kruskal
# Algoritmo de Kruskal para arvore geradora de custo minimo
def initialize(grafo)
require 'set'
@grafo = grafo
# E/Q - lista de arestas ordenadas por custo
@arestas_ordenadas = grafo.arestas.sort_by{|aresta,custo| custo}
# T - Grafo que deve conter a arvore geradora de custo minimo
@arvore = Grafo.new
# VS - Floresta ... <pegar desc do livro>
@vertices = []
end
def arvore_de_custo_minimo
@grafo.vertices.each{ |v| @vertices.push(Set.new [v])}
while @vertices.size > 1 do
# Escolha uma aresta (v,w) em E/Q de menor custo
# Apague (v,w) em E/Q
aresta = @arestas_ordenadas.shift
v = aresta[0][0]
w = aresta[0][1]
peso = aresta[1]
conjunto_v = Set.new
conjunto_w = Set.new
@vertices.each{ |conjunto|
if conjunto.include?(v)
conjunto_v = conjunto
end
if conjunto.include?(w)
conjunto_w = conjunto
end
}
if conjunto_v != conjunto_w
conjunto_novo = conjunto_v + conjunto_w
@vertices.push conjunto_novo
@vertices.delete conjunto_v
@vertices.delete conjunto_w
@arvore.adicionaVertice v
@arvore.adicionaVertice w
@arvore.conectar(v,w,peso)
end
end
@arvore
end
end