-
Notifications
You must be signed in to change notification settings - Fork 0
/
Grafo.java
220 lines (177 loc) · 7.01 KB
/
Grafo.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
// Uneb. Universidade do Estado da Bahia
// Aluno. Rafael Roberto Coutinho da Cruz
import java.util.ArrayList;
public class Grafo {
// declaration
private ArrayList<Vertice> vertices;
private ArrayList<Aresta> arestas;
public Grafo(Vertice vertice) {
this.vertices = new ArrayList<Vertice>();
this.arestas = new ArrayList<Aresta>();
this.vertices.add(vertice);
}
public Grafo() {
this.vertices = new ArrayList<Vertice>();
this.arestas = new ArrayList<Aresta>();
}
// ADD VERTICE
public void addVertice(Vertice v) {
this.vertices.add(v);
System.out.println("Vertice Adicionado");
}
// ADD ARESTA
public void addAresta(Aresta a) {
this.arestas.add(a);
a.getInicio().addAresta(a);
a.getFinal().addAresta(a);
System.out.println("Aresta Adicionada");
}
// DELETE DE VERTICE
public void deleteVertice(int valor) {
Vertice verticeDel = this.vertices.stream().filter(vertice -> vertice.getValor() == valor).findFirst().get();
this.arestas.removeIf(aresta -> aresta.getInicio() == verticeDel || aresta.getFinal() == verticeDel);
this.vertices.remove(verticeDel);
System.out.println("Vertice Deletado");
}
// DELETE DE ARESTA
public void deleteAresta(int valorInicio, int valorFinal) {
this.arestas.removeIf(aresta -> (aresta.getInicio().getValor() == valorInicio
|| aresta.getFinal().getValor() == valorInicio)
&&
(aresta.getInicio().getValor() == valorFinal
|| aresta.getFinal().getValor() == valorFinal));
System.out.println("Aresta Deletada");
}
// PRINT DE VERTICES
public void printVertices() {
if (this.vertices.isEmpty()) {
System.out.println("Não há Vertices no Grafo");
} else {
System.out.println("SEUS VERTICES SÃO: ");
this.vertices.forEach((vertice) -> {
System.out.print("-> " + vertice.getValor() + "| ");
});
}
System.out.println("\n");
}
// PRINT DE ARESTAS
public void printConections() {
if (this.arestas.isEmpty()) {
System.out.println("Não há Arestas no Grafo");
} else {
this.arestas.forEach((aresta) -> {
System.out.println("Inicio: " + aresta.getInicio().getValor() + " | " + aresta.getFinal().getValor() + " :Fim");
});
}
System.out.println("\n");
}
public void testConnection(int v1, int v2) {
this.arestas.forEach((aresta) -> {
boolean testInicio = (aresta.getInicio().getValor() == v1
|| aresta.getInicio().getValor() == v2);
boolean testFim = (aresta.getFinal().getValor() == v1
|| aresta.getFinal().getValor() == v2);
if (testInicio && testFim) {
System.out.println("Aresta encontrada: ");
System.out.println("[" + aresta.getInicio().getValor() + " -> " + aresta.getFinal().getValor() + "]");
}
});
}
// DIZ GRAU MINIMO, MEDIO, MAXIMO
public void grau() {
Integer grauMax = this.vertices.get(0).getValor();
Integer grauMin = this.vertices.get(0).getValor();
Double grauMed = 0.0;
for (Vertice vertice : this.vertices) {
Integer grauV = this.grauVertice(vertice);
grauMed += grauV;
if (grauV > grauMax) {
grauMax = grauV;
}
if (grauV < grauMin) {
grauMin = grauV;
}
}
grauMed /= this.vertices.size();
System.out.println("GRAU MÍNIMO: " + grauMin);
System.out.println("GRAU MÉDIO: " + grauMed);
System.out.println("GRAU MÁXIMO: " + grauMax);
System.out.println("\n");
}
// DIZ O GRAU DO VERTICE ESCOLHIDO
private Integer grauVertice(Vertice vertice) {
return vertice.getArestas().size();
}
public Integer grauVertice(int valor) {
Vertice vertice = this.vertices.stream().filter(v -> v.getValor() == valor).findFirst().get();
return vertice.getArestas().size();
}
// DIZ SE O GRAFO E CONEXO OU NÃO
public boolean checkConexo(boolean showPrint) {
// preenchendo matriz
int [][] matrizConexo = new int[vertices.size()][vertices.size()];
this.arestas.forEach((aresta) -> {
matrizConexo[aresta.getInicio().getValor() - 1][aresta.getFinal().getValor() - 1] = 1;
matrizConexo[aresta.getFinal().getValor() - 1][aresta.getInicio().getValor() - 1] = 1;
});
// COLOCA NUMERO 2 NA DIAGONAL
for(int i = 0; i < matrizConexo.length; i++){
for(int j = 0; j < matrizConexo[i].length; j++){
matrizConexo[i][i] = 2;
}
}
// PECORRE A MATRIZ SE ALGUM INDICE TIVE 0 ENTÃO NÃO CONEXO
for(int i = 0; i < matrizConexo.length; i++){
if(matrizConexo[i][i] == 0){
return false;
}
for(int j = 0; j < matrizConexo[i].length; j++){
if(matrizConexo[i][j] == 0){
return false;
}
}
}
return true;
}
// DIZ A ARESTAS INTERLIGADAS A UM VERTICE
public void adjacencias(int valor) {
Vertice vertice = this.vertices.stream().filter(v -> v.getValor() == valor).findFirst().get();
vertice.getArestas().forEach((aresta) -> {
System.out.println("[" + aresta.getInicio().getValor() + " -> " + aresta.getFinal().getValor() + "]");
});
}
// Matriz Adjacencia
public void matrizAdjacencia() {
//criandoMatriz
int [][] matrizAdjacencia = new int[vertices.size()][vertices.size()];
System.out.println("\n\nMatriz de Adjacencia:\n");
this.arestas.forEach((aresta) -> {
matrizAdjacencia[aresta.getInicio().getValor() - 1][aresta.getFinal().getValor() - 1] = 1;
matrizAdjacencia[aresta.getFinal().getValor() - 1][aresta.getInicio().getValor() - 1] = 1;
});
//printMatriz
for(int i = 0; i < matrizAdjacencia.length; i++){
for(int j = 0; j < matrizAdjacencia[i].length; j++){
System.out.print("\t\t"+matrizAdjacencia[i][j]);
}
System.out.println();
}
System.out.println("\n");
}
// Caminho de Euler
public void caminhodeEuler() {
int countImpares = 0;
boolean conexo = this.checkConexo(false);
for (Vertice vertice : this.vertices) {
int grauV= this.grauVertice(vertice);
if (grauV % 2 != 0) {
countImpares += 1;
}
}
if(countImpares == 2 && conexo || countImpares == 0 && conexo){
System.out.print("Existe um caminho de Euler");
} else
System.out.print("Não existe um caminho de Euler");
System.out.println("\n");
}
}