-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathGraphs.java
64 lines (50 loc) · 1.05 KB
/
Graphs.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
public class Graphs {
//Graph class with certain built in algorithms
private Edge[] edges;
private Vertex[] vertices;
public Graphs(Vertex[] vertices, Edge[] edges){
this.vertices=vertices;
this.edges=edges;
}
//Returns whether or not graph contains input vertex
public boolean hasVertex(Vertex v){
for(Vertex vertex:vertices){
if(vertex.getValue()==v.getValue()){
return true;
}
}
return false;
}
//returns sum of edge weights in graph
public int getCost(){
int sum=0;
for(Edge e:edges){
sum+=e.getWeight();
}
return sum;
}
public Edge[] getEdges(){
return edges;
}
public String[] vertex(){
String[] v= new String[vertices.length];
for(int i=0;i<vertices.length;i++){
v[i]=vertices[i].toString();
}
return v;
}
public Vertex[] getVertices(){
return vertices;
}
public String toString(){
String ver="";
for(Vertex v:vertices){
ver+=v.toString()+",";
}
String edg="";
for(Edge e:edges){
edg+=e.toString()+" ";
}
return "Vertices: "+ver+"\nEdges: "+edg+"\n";
}
}