forked from OneCodeMonkey/Algorithm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathundirectedGraph.java
More file actions
140 lines (127 loc) Β· 3.99 KB
/
undirectedGraph.java
File metadata and controls
140 lines (127 loc) Β· 3.99 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
/**
* A graph implemented with array of sets.
* Parallel edges and self-loops are allowed.
*
*/
import java.util.NoSuchElementException;
/**
* The `Graph` class represents an undirected graph of vertices named 0 through `V` - 1.
* It supports the following two primary operations: add an edge to the graph,
* iterate over all of the vertices adjacent to a vertex. It also provides methods
* for returning the number of vertices `V` and the number of edges `E`. Parallel
* edges and self-loops are allowed.
* By convention, a self-loop `v-v` appears in the adjacency list of `v` twice and contributes
* two to the degree of `v`.
*
* This implementation uses an adjacency-lists representation, which is a vertex-indexed
* array of `Bag` objects.
* All operations take constant time(in the worst case) except iterating over the
* vertices adjacent to a given vertex, which takes time proportional to the number
* of such vertices.
*
*/
public class Graph {
private static final String NEWLINE = System.getProperty("line.separator");
private final int V;
private int E;
private Bag<Integer>[] adj;
/* Initializes an empty graph with `V` vertices and 0 edges. */
public Graph(int V) {
if(V < 0)
throw new IllegalArgumentException("Number of vertices must be non-negative");
this.V = V;
this.E = 0;
adj = (Bag<Integer>[]) new Bag[V];
for(int v = 0; v < V; v++)
adj[v] = new Bag<Integer>();
}
/* Initializes a graph from the specified input stream.
* The format is the number of vertices `V`, followed by the number of edges `E`,
* followed by `E` pairs of vertices, with each entry separated by whitespace.
*
*/
public Graph(In in) {
try{
this.V = in.readInt();
if(V < 0)
throw new IllegalArgumentException("number of vertices in a Graph must be non-negative");
adj = (Bag<Integer>[]) new Bag[V];
for(int v = 0; v < V; v++)
adj[v] = new Bag<Integer>();
int E = in.readInt();
if(E < 0)
throw new IllegalArgumentException("number of edges in a Graph must be non-negative");
for(int i = 0; i < E; i++) {
int v = in.readInt();
int w = in.readInt();
validateVertex(v);
validateVertex(w);
addEdge(v, w);
}
} catch(NoSuchElementException e) {
throw new IllegalArgumentException("invalid input format in Graph constructor", e);
}
}
/* initializes a new Graph that is a deep copy of `G` */
public Graph(Graph G) {
this(G.V());
this.E = G.E();
for(int v = 0; v < G.V(); v++) {
// reverse so that adjacency list is in same order as original
Stack<Integer> reverse = new Stack<Integer>();
for(int w:G.adj[v])
reverse.push(w);
for(int w:reverse)
adj[v].add(w);
}
}
/* return the number of vertices in this graph. */
public int V() {
return v;
}
/* returns the number of edges in this graph. */
public int E() {
return E;
}
// throws an IllegalArgumentException unless (0 <= v < V)
private void validateVertex(int v) {
if(v < 0 || v >= V)
throw new IllegalArgumentException("vertex " + v + " is not between 0 and " + (V - 1));
}
/* adds the undirected edge v-w to this graph. */
public void addEdge(int v, int w) {
validateVertex(v);
validateVertex(w);
E++;
adj[v].add(w);
adj[w].add(v);
}
/* returns the vertices adjacent to vertext `v` */
public Iterable<Integer> adj(int v) {
validateVertex(v);
return adj[v];
}
/* returns the degree of vertext `v` */
public int degree(int v) {
validateVertex(v);
return adj[v].size();
}
/* returns a string representation of this graph */
public String toString() {
StringBuilder s = new StringBuffer();
s.append(V + " vertices, " + E + " edges " + NEWLINE);
for(int v = 0; v < V; v++) {
s.append(v + ": ");
for(int w:adj[v])
s.append(w + " ");
s.append(NEWLINE);
}
return s.toString();
}
/* test */
public static void main(String[] args) {
In in = new In(args[0]);
Graph G = new Graph(in);
StdOut.println(G);
}
}