forked from liuyubobobo/Play-Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
111 lines (81 loc) · 2.13 KB
/
main.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/// Source : https://leetcode.com/problems/convert-sorted-list-to-binary-search-tree/description/
/// Author : liuyubobobo
/// Time : 2018-04-22
#include <iostream>
using namespace std;
/// Definition for singly-linked list.
struct ListNode {
int val;
ListNode *next;
ListNode(int x) : val(x), next(NULL) {}
};
/// Definition for a binary tree node.
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};
ListNode* createLinkedList(int arr[], int n){
if(n == 0)
return NULL;
ListNode* head = new ListNode(arr[0]);
ListNode* curNode = head;
for(int i = 1 ; i < n ; i ++){
curNode->next = new ListNode(arr[i]);
curNode = curNode->next;
}
return head;
}
void inOrder(TreeNode* node){
if(node == NULL)
return;
inOrder(node->left);
cout << node->val << " ";
inOrder(node->right);
}
/// Recursive
/// Time Complexity: O(n)
/// Space Complexity: O(logn)
class Solution {
public:
TreeNode* sortedListToBST(ListNode* head) {
if(head == NULL)
return NULL;
int len = getLen(head);
return buildBST(head, 0, len - 1);
}
private:
TreeNode* buildBST(ListNode* head, int l, int r){
if(l > r)
return NULL;
if(l == r)
return new TreeNode(head->val);
int mid = l + (r - l + 1) / 2;
ListNode* cur = head;
for(int i = l ; i < mid - 1 ; i ++)
cur = cur->next;
ListNode* node = cur->next;
cur->next = NULL;
TreeNode* root = new TreeNode(node->val);
root->left = buildBST(head, l, mid - 1);
root->right = buildBST(node->next, mid + 1, r);
return root;
}
int getLen(ListNode* head){
ListNode* cur = head;
int res = 0;
while(cur != NULL){
res ++;
cur = cur->next;
}
return res;
}
};
int main() {
int arr1[] = {-10, -3, 0, 5, 9};
ListNode* head1 = createLinkedList(arr1, 5);
inOrder(Solution().sortedListToBST(head1));
cout << endl;
return 0;
}