forked from zhuli19901106/leetcode-zhuli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstruct-binary-tree-from-string_1_AC.cpp
71 lines (65 loc) · 1.63 KB
/
construct-binary-tree-from-string_1_AC.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
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
#include <cctype>
#include <stack>
#include <string>
using std::isdigit;
using std::stack;
using std::string;
class Solution {
public:
TreeNode* str2tree(string s) {
int ls = s.size();
if (ls == 0) {
return NULL;
}
stack<TreeNode *> sp;
stack<int> si;
int i;
int n, f;
TreeNode *p;
i = 0;
while (i < ls) {
if (s[i] == '+' || s[i] == '-' || isdigit(s[i])) {
f = (s[i] == '-' ? -1 : +1);
n = (isdigit(s[i]) ? s[i] - '0' : 0);
++i;
while (i < ls && isdigit(s[i])) {
n = n * 10 + (s[i++] - '0');
}
p = new TreeNode(f * n);
if (sp.empty()) {
// Do nothing
} else if (si.top() == 0) {
sp.top()->left = p;
} else {
sp.top()->right = p;
}
sp.push(p);
si.push(0);
} else if (s[i] == '(') {
++i;
} else if (s[i] == ')') {
sp.pop();
si.pop();
++si.top();
++i;
} else {
++i;
}
}
p = sp.top();
while (!sp.empty()) {
sp.pop();
si.pop();
}
return p;
}
};