forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBinaryTreePreorderTraversal.java
64 lines (51 loc) · 1.62 KB
/
BinaryTreePreorderTraversal.java
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
package com.fishercoder.solutions;
import com.fishercoder.common.classes.TreeNode;
import java.util.ArrayList;
import java.util.List;
import java.util.Stack;
/**Given a binary tree, return the preorder traversal of its nodes' values.
For example:
Given binary tree {1,#,2,3},
1
\
2
/
3
return [1,2,3].
Note: Recursive solution is trivial, could you do it iteratively?*/
public class BinaryTreePreorderTraversal {
public List<Integer> preorderTraversal_iterative_original(TreeNode root) {
List<Integer> list = new ArrayList();
Stack<TreeNode> stack = new Stack();
if(root == null) return list;
stack.push(root);
while(!stack.isEmpty()){
TreeNode curr = stack.pop();
list.add(curr.val);
if(curr.right != null) stack.push(curr.right);
if(curr.left != null) stack.push(curr.left);
}
return list;
}
public List<Integer> preorderTraversal_recursive_1(TreeNode root) {
List<Integer> list = new ArrayList();
return pre(root, list);
}
List<Integer> pre(TreeNode root, List<Integer> list){
if(root == null) return list;
list.add(root.val);
pre(root.left, list);
pre(root.right, list);
return list;
}
public List<Integer> preorderTraversal_recursive_2(TreeNode root) {
List<Integer> result = new ArrayList();
if (root != null) dfs(root, result);
return result;
}
private void dfs(TreeNode root, List<Integer> result){
result.add(root.val);
if (root.left != null) dfs(root.left, result);
if (root.right != null) dfs(root.right, result);
}
}