-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path654.cpp
58 lines (46 loc) · 1.17 KB
/
654.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
#include<vector>
#include<string>
#include<map>
using namespace std;
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};
class Solution {
public:
TreeNode* constructMaximumBinaryTree(vector<int>& nums) {
int sz = nums.size();
if(sz == 0)return NULL;
TreeNode* root = new TreeNode(0);
root->val = nums[0];
root->left = NULL;
root->right = NULL;
for(int i = 1; i < sz; ++i)
{
TreeNode* n = new TreeNode(0);
n->val = nums[i];
n->left = n->right = NULL;
TreeNode* p = root;
TreeNode* pre = NULL;
while(p)
{
if(p->val < nums[i])break;
pre = p;
p = p->right;
}
if(!pre)
{
n->left = root;
root = n;
}
else
{
pre->right = n;
n->left = p;
}
}
return root;
}
};