-
-
Notifications
You must be signed in to change notification settings - Fork 422
/
Copy pathBinary-Tree-Preorder-Traversal.cpp
43 lines (38 loc) · 1.35 KB
/
Binary-Tree-Preorder-Traversal.cpp
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
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
* };
*/
//This solution is an interative solution for problem #144 using stack
//Preorder Traversal is root, left, right
//The Space and Time Complexity is O(n)
class Solution {
public:
vector<int> preorderTraversal(TreeNode* root) {
vector<int> result;
//if root == nullptr, return empty vector
if (root == NULL) {
return result;
}
stack<TreeNode*> node_stack;
node_stack.push(root);
while (!node_stack.empty()) {
TreeNode* node = node_stack.top();
node_stack.pop(); //pop the top node from the stack
result.push_back(node->val); //add the value to the result vector
if (node->right) {
node_stack.push(node->right); //push right child to the stack if it exists
}
if (node->left) {
node_stack.push(node->left); //push left child to the stack if it exists
}
}
return result;
}
};