-
Notifications
You must be signed in to change notification settings - Fork 0
/
Grafo.java
102 lines (85 loc) · 2.17 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
package GrafoSimples;
import java.util.ArrayList;
public class Grafo{
ArrayList<Vertice> vertices = new ArrayList<Vertice>();
ArrayList<Aresta> arestas = new ArrayList<Aresta>();
public void inserirVertices(Vertice vertice) {
vertices.add(vertice);
}
public void inserirArestas(Aresta aresta) {
arestas.add(aresta);
}
public void excluirAresta(Aresta aresta) {
for(int i = 0; i < arestas.size(); i++){
if(arestas.get(i) == aresta){
arestas.remove(i);
}
}
}
//ok
public void excluirVertices(Vertice v1) {
//excluir aresta
for (int i = 0; i < arestas.size(); i++) {
if (v1 == arestas[i].getV1() || v1 == arestas[i].getV2()){
arestas.remove(i);
}
}
for (int i = 0; i < vertices.size(); i++) {
if (vertices.get(i) == v1) {
vertices.remove(i);
}
}
}
//ok
public void oposto(Vertice v, Aresta a){
if (a.getV1() == v){
System.out.println(a.getV2().getValor());
} else if (a.getV1() == v) {
System.out.println(a.getV1().getValor());
}
}
//ok
public void isAdjacente(Vertice v1, Vertice v2){
for (int i = 0; i < arestas.size(); i++){
if((arestas.get(i).getV1 == v1 && arestas.get(i).getV2 == v2) ||(arestas.get(i).getV1 == v2 && arestas.get(i).getV2 == v1)){
System.out.println("São adjacentes");
}
}
}
//ok
public void substituirVertice(Vertice v1, String x){
for(int i = 0; i < vertices.size(); i++){
if (vertices.get(i) == v1){
vertices.get(i).setValor(x);
}
}
}
//ok
public void arestasIncidentes(Vertice v1){
for (int i = 0; i < arestas.size(); i++){
if(arestas.get(i).getV1 == v1 || arestas.get(i).getV2 == v1){
System.out.println(arestas.get(i).getValor());
}
}
}
//ok
public void substituirAresta(Aresta a, String nome){
for (int i = 0; i < arestas.size(); i++){
if(arestas.get(i) == a){
arestas.get(i).setValor(nome);
}
}
}
//ok
public void vertices() {
for (int i = 0; i < vertices.size(); i++){
System.out.println(vertices.get(i).getValor());
}
}
//ok
public void arestas() {
for (int i = 0; i < arestas.size(); i++){
System.out.println(arestas.get(i).getValor());
}
}
}