-
Notifications
You must be signed in to change notification settings - Fork 441
/
Copy pathgraph.js
137 lines (105 loc) · 3.58 KB
/
graph.js
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
/*
GRAPHS
Abstract data type
Basic Graph:
Stores nodes (represented by any primitive value) and the neighbors for each node. This implementation represents a graph as an adjacency list (https://en.wikipedia.org/wiki/Adjacency_list).
Here's an example:
1---2---3
\ /
4
graph = {
1: [2, 4],
2: [1, 3, 4],
3: [2],
4: [1, 2]
}
Constraints:
This graph implementation is undirected and can have unconnected nodes. The nodes are represented by unique primitive values.
*** Operations:
graph.addNode(value) // value must be a primitive
=> undefined
Add node to graph
graph.removeNode(value)
=> undefined
Remove node from graph
graph.contains(value)
=> true/false
Returns true if value is found in graph, false otherwise
graph.addEdge(value1, value2)
=> undefined
Create connection between two nodes if they're both present in the graph
graph.removeEdge(value1, value2)
=> undefined
Remove connection between two nodes
graph.hasEdge(value1, value2)
=> true/false
Returns true if edge exists, false otherwise
graph.forEach(callback)
=> undefined
Traverse the graph and invoke the passed callback once for each node. The callback function receives the following for each node: node value, node Neighbors, all nodes.
Implement traversal methods for depth-first and breadth-first traversal. The methods take a starting node and a callback that gets invoked for each node. The callback should receive two arguments: the node value and the distance (number of edges that separate the node from the starting node). See example usage below.
graph.traverseDepthFirst(value1, callback)
=> undefined
Starting at the node with the value passed in, traverse the graph and invoke the callback for each node in a depth-first fashion.
graph.traverseBreadthFirst(value, callback)
=> undefined
Starting at the node with the value passed in, traverse the graph and invoke the callback for each node in a breadth-first fashion.
Example Usage:
1---2---3---5
\ /
4
{
'1': [ 2, 4 ],
'2': [ 1, 3, 4 ],
'3': [ 2, 5 ],
'4': [ 1, 2 ],
'5': [ 3 ]
}
var traverseDF = [];
graph.traverseDepthFirst(1, function(val, distance) { traverseDF.push([val, distance]) });
traverseDF should be [ [ 1, 0 ], [ 2, 1 ], [ 3, 2 ], [ 5, 3 ], [ 4, 2 ] ]
var traverseBF = [];
graph.traverseBreadthFirst(1, function(val, distance) { traverseBF.push([val, distance]) });
traverseBF should be [ [ 1, 0 ], [ 2, 1 ], [ 4, 1 ], [ 3, 2 ], [ 5, 3 ] ]
*** Additional Exercises:
Given a directed graph and two nodes in the graph, write a function that indicates whether there is a route between the two nodes. Bonus: rather than returning a boolean, have your function return the shortest distance between the two nodes (the number of edges that separate them).
*/
function Graph () {
this._nodes = {};
}
Graph.prototype.addNode = function(value) {
// implement me...
};
// Time complexity:
Graph.prototype.removeNode = function(value) {
// implement me...
};
// Time complexity:
Graph.prototype.contains = function(value) {
// implement me...
};
// Time complexity:
Graph.prototype.addEdge = function(value1, value2) {
// implement me...
};
// Time complexity:
Graph.prototype.removeEdge = function(value1, value2) {
// implement me...
};
// Time complexity:
Graph.prototype.hasEdge = function(value1, value2) {
// implement me...
};
// Time complexity:
Graph.prototype.forEach = function(fn) {
// implement me...
};
// Time complexity:
Graph.prototype.traverseDepthFirst = function(value, fn, visited, distance) {
// implement me...
};
// Time complexity:
Graph.prototype.traverseBreadthFirst = function(value, fn) {
// implement me...
};
// Time complexity: