-
Notifications
You must be signed in to change notification settings - Fork 306
/
Copy path144.py
45 lines (40 loc) · 1.04 KB
/
144.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
41
42
43
44
45
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Author: Yu Zhou
# ****************
# 144. Binary Tree Preorder Traversal
# Descrption:
# Given a binary tree, return the preorder traversal of its nodes' values.
# ****************
# Time Complexity O(N) | Space O(N)
# Stack/ Iterative
class Solution(object):
def preorderTraversal(self, root):
"""
:type root: TreeNode
:rtype: List[int]
"""
res = []
stack = [root]
while stack:
node = stack.pop()
if node:
res.append(node.val)
stack.append(node.right)
stack.append(node.left)
return res
# DFS/ Recursive
class Solution(object):
def preorderTraversal(self, root):
"""
:type root: TreeNode
:rtype: List[int]
"""
res = []
def dfs(root, res):
if root:
res.append(root.val)
dfs(root.left, res)
dfs(root.right, res)
return res
return dfs(root,res)