mirror of
https://github.com/donnemartin/interactive-coding-challenges
synced 2026-03-04 14:48:45 +00:00
Move graph dfs to a class
This commit is contained in:
@@ -104,9 +104,11 @@
|
||||
},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"def dfs(root, visit_func):\n",
|
||||
" # TODO: Implement me\n",
|
||||
" pass"
|
||||
"class GraphDfs(Graph):\n",
|
||||
"\n",
|
||||
" def dfs(self, root, visit_func):\n",
|
||||
" # TODO: Implement me\n",
|
||||
" pass"
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -153,7 +155,7 @@
|
||||
"\n",
|
||||
" def test_dfs(self):\n",
|
||||
" nodes = []\n",
|
||||
" graph = Graph()\n",
|
||||
" graph = GraphDfs()\n",
|
||||
" for id in range(0, 6):\n",
|
||||
" nodes.append(graph.add_node(id))\n",
|
||||
" graph.add_edge(0, 1, 5)\n",
|
||||
@@ -164,7 +166,7 @@
|
||||
" graph.add_edge(2, 1, 6)\n",
|
||||
" graph.add_edge(3, 2, 7)\n",
|
||||
" graph.add_edge(3, 4, 8)\n",
|
||||
" dfs(nodes[0], self.results.add_result)\n",
|
||||
" graph.dfs(nodes[0], self.results.add_result)\n",
|
||||
" assert_equal(str(self.results), \"[0, 1, 3, 2, 4, 5]\")\n",
|
||||
"\n",
|
||||
" print('Success: test_dfs')\n",
|
||||
|
||||
Reference in New Issue
Block a user