forked from TheAlgorithms/Java
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGraphs.java
More file actions
Latest commit
129 lines (117 loc) · 3.98 KB
/
Copy pathGraphs.java
File metadata and controls
129 lines (117 loc) · 3.98 KB
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
importjava.util.ArrayList;
importjava.lang.StringBuilder;
classAdjacencyListGraph<EextendsComparable<E>> {
ArrayList<Vertex> verticies;
publicAdjacencyListGraph() {
verticies = newArrayList<>();
}
privateclassVertex {
Edata;
ArrayList<Vertex> adjacentVerticies;
publicVertex(Edata) {
adjacentVerticies = newArrayList<>();
this.data = data;
}
publicbooleanaddAdjacentVertex(Vertexto) {
for (Vertexv: adjacentVerticies) {
if (v.data.compareTo(to.data) == 0) {
returnfalse; // the edge already exists
}
}
returnadjacentVerticies.add(to); // this will return true;
}
publicbooleanremoveAdjacentVertex(Eto) {
// use indexes here so it is possible to
// remove easily without implementing
// equals method that ArrayList.remove(Object o) uses
for (inti = 0; i < adjacentVerticies.size(); i++) {
if (adjacentVerticies.get(i).data.compareTo(to) == 0) {
adjacentVerticies.remove(i);
returntrue;
}
}
returnfalse;
}
}
/**
* this method removes an edge from the graph between two specified
* verticies
*
* @param from the data of the vertex the edge is from
* @param to the data of the vertex the edge is going to
* @return returns false if the edge doesn't exist, returns true if the edge exists and is removed
*/
publicbooleanremoveEdge(Efrom, Eto) {
VertexfromV = null;
for (Vertexv: verticies) {
if (from.compareTo(v.data) == 0) {
fromV = v;
break;
}
}
if (fromV == null) returnfalse;
returnfromV.removeAdjacentVertex(to);
}
/**
* this method adds an edge to the graph between two specified
* verticies
*
* @param from the data of the vertex the edge is from
* @param to the data of the vertex the edge is going to
* @return returns true if the edge did not exist, return false if it already did
*/
publicbooleanaddEdge(Efrom, Eto) {
VertexfromV = null, toV = null;
for (Vertexv: verticies) {
if (from.compareTo(v.data) == 0) { // see if from vertex already exists
fromV = v;
} elseif (to.compareTo(v.data) == 0) { // see if to vertex already exists
toV = v;
}
if (fromV != null && toV != null) break; // both nodes exist so stop searching
}
if (fromV == null) {
fromV = newVertex(from);
verticies.add(fromV);
}
if (toV == null) {
toV = newVertex(to);
verticies.add(toV);
}
returnfromV.addAdjacentVertex(toV);
}
/**
* this gives a list of verticies in the graph and their adjacencies
*
* @return returns a string describing this graph
*/
publicStringtoString() {
StringBuildersb = newStringBuilder();
for (Vertexv: verticies) {
sb.append("Vertex: ");
sb.append(v.data);
sb.append("\n");
sb.append("Adjacent verticies: ");
for (Vertexv2: v.adjacentVerticies) {
sb.append(v2.data);
sb.append(" ");
}
sb.append("\n");
}
returnsb.toString();
}
}
publicclassGraphs {
publicstaticvoidmain(Stringargs[]) {
AdjacencyListGraph<Integer> graph = newAdjacencyListGraph<>();
assertgraph.addEdge(1, 2);
assertgraph.addEdge(1, 5);
assertgraph.addEdge(2, 5);
assert !graph.addEdge(1, 2);
assertgraph.addEdge(2, 3);
assertgraph.addEdge(3, 4);
assertgraph.addEdge(4, 1);
assert !graph.addEdge(2, 3);
System.out.println(graph);
}
}