-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path201.h
35 lines (33 loc) · 874 Bytes
/
201.h
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
/**
* Definition of SegmentTreeNode:
* class SegmentTreeNode {
* public:
* int start, end;
* SegmentTreeNode *left, *right;
* SegmentTreeNode(int start, int end) {
* this->start = start, this->end = end;
* this->left = this->right = NULL;
* }
* }
*/
class Solution {
public:
/*
* @param start: start value.
* @param end: end value.
* @return: The root of Segment Tree.
*/
SegmentTreeNode * build(int start, int end) {
// write your code here
if(start == end){
return new SegmentTreeNode(start,end);
}
if(start > end)
return nullptr;
int mid = (start + end) / 2;
SegmentTreeNode *root = new SegmentTreeNode(start, end);
root->left = build(start, mid);
root->right= build(mid+1, end);
return root;
}
};