We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 20bd018 + 7b08311 commit 055cb68Copy full SHA for 055cb68
Topological Sort/TopologicalSort1.swift
@@ -1,6 +1,7 @@
1
extension Graph {
2
private func depthFirstSearch(_ source: Node, visited: inout [Node : Bool]) -> [Node] {
3
var result = [Node]()
4
+ visited[source] = true
5
6
if let adjacencyList = adjacencyList(forNode: source) {
7
for nodeInAdjacencyList in adjacencyList {
@@ -10,7 +11,6 @@ extension Graph {
10
11
}
12
13
- visited[source] = true
14
return [source] + result
15
16
0 commit comments