forked from das-jishu/algoexpert-data-structures-algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdepth-first-search.py
40 lines (32 loc) · 849 Bytes
/
depth-first-search.py
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
# DEPTH FIRST SEARCH
# ITERATIVE WAY
class Node:
def __init__(self, name):
self.children = []
self.name = name
def addChild(self, name):
self.children.append(Node(name))
return self
def depthFirstSearch(self, array):
# Write your code here.
stack = [self]
while stack:
vertex = stack.pop()
array.append(vertex.name)
for child in vertex.children[::-1]:
stack.append(child)
return array
# RECURSIVE WAY
class Node:
def __init__(self, name):
self.children = []
self.name = name
def addChild(self, name):
self.children.append(Node(name))
return self
def depthFirstSearch(self, array):
# Write your code here.
array.append(self.name)
for child in self.children:
child.depthFirstSearch(array)
return array