- Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathUndirectedGraphs.java
More file actions
Latest commit
91 lines (74 loc) · 1.8 KB
/
Copy pathUndirectedGraphs.java
File metadata and controls
91 lines (74 loc) · 1.8 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
packagealgorithms;
importjava.util.*;
/**
* Implementation of undirected graph represented using adjacency list.
*
* @author joeytawadrous
*/
publicfinalclassUndirectedGraphs<T> implementsIterable<T>
{
privatefinalMap<T, Set<T>> graph = newHashMap<T, Set<T>>();
publicbooleanaddNode(Tnode)
{
if (graph.containsKey(node)) { returnfalse; }
graph.put(node, newHashSet<T>());
returntrue;
}
publicvoidaddEdge(Tstart, Tdest)
{
if (!graph.containsKey(start) || !graph.containsKey(dest))
{
System.out.println("No such nodes in the graph.");
}
else
{
graph.get(start).add(dest);
graph.get(dest).add(start);
}
}
publicvoidremoveEdge(Tstart, Tdest)
{
if (!graph.containsKey(start) || !graph.containsKey(dest))
{
System.out.println("No such nodes in the graph.");
}
else
{
graph.get(start).remove(dest);
graph.get(dest).remove(start);
}
}
publicbooleanisEdgeExists(Tstart, Tend)
{
if (!graph.containsKey(start) || !graph.containsKey(end))
{
System.out.println("No such nodes in the graph.");
}
returngraph.get(start).contains(end);
}
publicSet<T> getNeighbors(Tnode)
{
Set<T> neighbors = graph.get(node);
if (neighbors == null)
{
System.out.println("No such nodes in the graph.");
}
returnCollections.unmodifiableSet(neighbors);
}
publicIterator<T> iterator()
{
returngraph.keySet().iterator();
}
publicIterable<T> getNodes()
{
returngraph.keySet();
}
publicintsize()
{
returngraph.size();
}
publicbooleanisEmpty()
{
returngraph.isEmpty();
}
}