forked from jainaman224/Algo_Ds_Notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PartitionStructure.java
51 lines (39 loc) · 1.17 KB
/
PartitionStructure.java
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
package kruskal;
public class PartitionStructure {
private final int[] conjunto;
public PartitionStructure(int numeroVertices) {
conjunto = new int[numeroVertices + 1];
inicializar();
}
public int getConjunto(int i) {
return conjunto[i];
}
public void setConjunto(int pos, int value) {
conjunto[pos] = value;
}
private void inicializar() {
for (int i = 0; i < conjunto.length; i++) {
conjunto[i] = 0;
}
}
//posición i = vertice i+1
public int seek(int vertice) {
int i = vertice;
while (conjunto[i] > 0) {
i = conjunto[i];//Retoque Laura
}
return i;
}
public void merge(int verticeA, int verticeB) {
if (conjunto[verticeA] == conjunto[verticeB]) {
conjunto[verticeA] = conjunto[verticeA] - 1;
conjunto[verticeB] = verticeA;
} else {
if (conjunto[verticeA] < conjunto[verticeB]) {
conjunto[verticeB] = verticeA;
} else {
conjunto[verticeA] = verticeB;
}
}
}
}