-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path94.cpp
More file actions
40 lines (35 loc) · 861 Bytes
/
Copy path94.cpp
File metadata and controls
40 lines (35 loc) · 861 Bytes
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
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
};
#include<vector>
#include<stack>
using namespace std;
class Solution {
public:
vector<int> inorderTraversal(TreeNode* root) {
vector<int> ret;
if (!root) return ret;
bool goleft = true;
stack<TreeNode*> s;
s.push(root);
while (s.size() > 0) {
TreeNode* node = s.top();
if (goleft && node->left) {
s.push(node->left);
goleft = true;
} else {
ret.push_back(node->val);
s.pop();
if (node->right) {
s.push(node->right);
goleft = true;
} else {
goleft = false;
}
}
}
return ret;
}
};