-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpreorderTraversal.cpp
80 lines (69 loc) · 1.56 KB
/
preorderTraversal.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
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
/*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].
*/
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
vector<int> preorderTraversal(TreeNode* root) {
vector<int> result;
vector<int> tmp;
if (root == nullptr)
return result;
if (root)
{
result.push_back(root->val);
}
if (root->left || root->right)
{
if (root->left)
{
tmp=preorderTraversal(root->left);
result.insert(result.end(), tmp.begin(),tmp.end());
}
if (root->right)
{
tmp = preorderTraversal(root->right);
result.insert(result.end(), tmp.begin(), tmp.end());
}
}
return result;
}
};
//another Solution
class Solution {
public:
vector<int> preorderTraversal(TreeNode *root) {
stack<TreeNode*> nodeStack;
vector<int> result;
//base case
if(root==NULL)
return result;
nodeStack.push(root);
while(!nodeStack.empty())
{
TreeNode* node= nodeStack.top();
result.push_back(node->val);
nodeStack.pop();
if(node->right)
nodeStack.push(node->right);
if(node->left)
nodeStack.push(node->left);
}
return result;
}
};