-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBinaryTreeLevelOrderTraversal.h
84 lines (72 loc) · 2.31 KB
/
BinaryTreeLevelOrderTraversal.h
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*
Author: naiyong, aonaiyong@gmail.com
Date: Sep 29, 2014
Problem: Binary Tree LevelOrder Traversal
Difficulty: 3
Source: https://oj.leetcode.com/problems/binary-tree-level-order-traversal/
Notes:
Given a binary tree, return the level order traversal of its nodes' values. (ie, from left to right, level by level).
For example:
Given binary tree {3,9,20,#,#,15,7},
3
/ \
9 20
/ \
15 7
return its level order traversal as:
[
[3],
[9,20],
[15,7]
]
Solution: http://en.wikipedia.org/wiki/Tree_traversal
1. Iterative LeverOrder Traversal (BFS & Queue).
Time: O(n), Space: O(n)
2. Recursive LeverOrder Traversal (Pre-order & Recursion).
Time: O(n), Space: O(n)
*/
#ifndef BINARYTREELEVELORDERTRAVERSAL_H_
#define BINARYTREELEVELORDERTRAVERSAL_H_
#include <vector>
using std::vector;
#include <queue>
using std::queue;
#include "TreeNode.h"
class Solution {
public:
vector<vector<int> > levelOrder(TreeNode *root) {
vector<vector<int> > values;
levelOrder(root, values);
// levelOrder(root, 0, values);
return values;
}
// Iterative Solution
void levelOrder(TreeNode *root, vector<vector<int> > &values) {
queue<TreeNode *> frontier;
if (root) frontier.push(root);
while (!frontier.empty()) {
// process together all nodes in current frontier (level)
int n = frontier.size();
vector<int> level(n);
for (int i = 0; i < n; ++i) {
// the front node is discovered
TreeNode *node = frontier.front();
level[i] = node->val;
if (node->left) frontier.push(node->left);
if (node->right) frontier.push(node->right);
// the front node is finished
frontier.pop();
}
values.push_back(level);
}
}
// Recursive Solution
void levelOrder(TreeNode *root, int depth, vector<vector<int> > &values) {
if (!root) return;
if (values.size() <= depth) values.resize(depth + 1);
values[depth].push_back(root->val);
levelOrder(root->left, depth+1, values);
levelOrder(root->right, depth+1, values);
}
};
#endif /* BINARYTREELEVELORDERTRAVERSAL_H_ */