-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGraph.java
More file actions
219 lines (192 loc) · 5.28 KB
/
Graph.java
File metadata and controls
219 lines (192 loc) · 5.28 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
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
/** -----------------------------------------------------------------------
Graph.java
@author William Clift
Data Structures and Algorithms
Ursinus College
Project 4 - Karger's Algorithm
13 May 2020
Compile and Run Instructions:
Compile: javac Graph.java
Run: java Graph
------------------------------------------------------------------- **/
import java.util.Scanner;
import java.util.ArrayList;
import java.util.List;
import java.util.Arrays;
import java.io.*;
import java.util.*;
public class Graph {
private final int V, E; //original number of vertices and edges
private final List<Edge> edges; //graph defined by edges
private List<Subset> subsets;
private int vertices; //vertices remaining after contraction
public Graph (int V, int E) {
this.V = V;
this.E = E;
this.vertices = V;
this.edges = new ArrayList<Edge>(E);
this.subsets = new ArrayList<Subset>(V);
}
public int getOriginalVertexCount() {
return V;
}
public int getOriginalEdgesCount() {
return E;
}
public List<Edge> getEdges() {
return edges;
}
public List<Subset> getSubsets() {
return subsets;
}
/**
* Decreases number of vertices after contraction.
**/
public void decrementVertexCount() {
vertices--;
}
/**
* Returns count of vertices afer contraction
**/
public int getCurrentVertexCount() {
return vertices;
}
public void setCurrentVertexCount(int vertices) {
this.vertices = vertices;
}
/**
* Copy constructor to duplicate Graph
* Usage: Graph copy = new Graph(g);
* @param o original graph
**/
public Graph(Graph o) {
this.V = o.getOriginalVertexCount();
this.E = o.getOriginalEdgesCount();
this.vertices = o.getCurrentVertexCount();
this.edges = new ArrayList<Edge>(E);
this.subsets = new ArrayList<Subset>(E);
for(Subset s : o.getSubsets()) {
this.subsets.add(new Subset(s));
}
for(Edge e : o.getEdges()) {
this.edges.add(new Edge(e));
}
}
/**
* Generate new graph from stdin
* @return new graph
**/
public static Graph generateGraphFromText() {
Scanner scanner = new Scanner(System.in);
/*try {
scanner = new Scanner(new File("graph.txt"));
} catch(FileNotFoundException e) {
System.err.println("File not found. Exiting.");
System.exit(-1);
}*/
int numVertices = Integer.parseInt(scanner.nextLine());
int numEdges = Integer.parseInt(scanner.nextLine());
Graph g = new Graph(numVertices, numEdges);
int lineNum = 1;
while(scanner.hasNextLine()) {
String line = scanner.nextLine();
String[] toks = line.split(" ");
int s = Integer.parseInt(toks[0]); //start vertex
int t = Integer.parseInt(toks[1]); //end vertex
double weight = Double.parseDouble(toks[2]);
g.addEdge(s, t, weight);
}
return g;
}
/**
* Generate new graph from File
* @return new graph
**/
public static Graph generateGraphFromText(File f){
Graph g = new Graph(0, 0);
try {
Scanner scanner = new Scanner(f);
int numVertices = Integer.parseInt(scanner.nextLine());
int numEdges = Integer.parseInt(scanner.nextLine());
g = new Graph(numVertices, numEdges);
int lineNum = 1;
while(scanner.hasNextLine()) {
String line = scanner.nextLine();
String[] toks = line.split(" ");
int s = Integer.parseInt(toks[0]); //start vertex
int t = Integer.parseInt(toks[1]); //end vertex
double weight = Double.parseDouble(toks[2]);
g.addEdge(s, t, weight);
}
} catch(FileNotFoundException e) {
System.err.println("File not found. Exiting.");
System.exit(-1);
}
return g;
}
/**
* Adds new edge with values of e
* @param e edge representng edge to be added
**/
public void addEdge(Edge e) {
addEdge(e.s(), e.t(), e.weight());
}
public void addEdge(int s, int t, double weight) {
this.edges.add(new Edge(s, t, weight));
}
public static void main(String[] args)
{
//read from stdin
Graph graph = generateGraphFromText();
}
/**
* Generate a Markdown file readable by Typora
* of graph. Doesn't consider contractions
**/
public String toMarkdown(boolean includeWeights) {
String str = "```mermaid\ngraph LR\n";
for(Edge e : edges) {
if(includeWeights) {
str += " ";
str += e.s() + "((" + e.s() + "))";
str += " -- ";
str += e.weight();
str += " --> ";
str += e.t() + "((" + e.t() + "))";
str += "\n";
} else {
str += " ";
str += e.s() + "((" + e.s() + "))";
str +=" --> ";
str += e.t() + "((" + e.t() + "))";
str += "\n";
}
}
return str;
}
/**
* Generate a GraphViz dot file readable by Typora
* of graph. Doesn't consider contractions
**/
public String toGraphViz(boolean includeWeights) {
String str = "digraph G {";
for(Edge e : edges) {
if(includeWeights) {
str += " ";
str += e.s();
str += " -> ";
str += e.t();
str += " [label=\"" + e.weight() + "\"];";
str += "\n";
} else {
str += " ";
str += e.s();
str +=" -> ";
str += e.t() + ";";
str += "\n";
}
}
str += "}";
return str;
}
}