-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
142 lines (126 loc) · 3.54 KB
/
main.cpp
File metadata and controls
142 lines (126 loc) · 3.54 KB
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
// Source: https://leetcode.com/problems/insert-into-a-binary-search-tree
// Title: Insert into a Binary Search Tree
// Difficulty: Medium
// Author: Mu Yang <http://muyang.pro>
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// You are given the `root` node of a binary search tree (BST) and a `value` to insert into the tree. Return the root node of the BST after the insertion. It is **guaranteed** that the new value does not exist in the original BST.
//
// **Notice**that there may exist multiple valid ways for theinsertion, as long as the tree remains a BST after insertion. You can return **any of them**.
//
// **Example 1:**
// https://assets.leetcode.com/uploads/2020/10/05/insertbst.jpg
//
// ```
// Input: root = [4,2,7,1,3], val = 5
// Output: [4,2,7,1,3,5]
// Explanation: Another accepted tree is:
// https://assets.leetcode.com/uploads/2020/10/05/bst.jpg
// ```
//
// **Example 2:**
//
// ```
// Input: root = [40,20,60,10,30,50,70], val = 25
// Output: [40,20,60,10,30,50,70,null,null,25]
// ```
//
// **Example 3:**
//
// ```
// Input: root = [4,2,7,1,3,null,null,null,null,null,null], val = 5
// Output: [4,2,7,1,3,5]
// ```
//
// **Constraints:**
//
// - The number of nodes in the tree will be in the range `[0,10^4]`.
// - `-10^8 <= Node.val <= 10^8`
// - All the values `Node.val` are **unique**.
// - `-10^8 <= val <= 10^8`
// - It's **guaranteed** that `val` does not exist in the original BST.
//
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#include <functional>
using namespace std;
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode() : val(0), left(nullptr), right(nullptr) {}
TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
};
// Recursion
class Solution {
public:
TreeNode *insertIntoBST(TreeNode *root, int val) {
if (!root) return new TreeNode(val);
if (val < root->val) {
root->left = insertIntoBST(root->left, val);
} else {
root->right = insertIntoBST(root->right, val);
}
return root;
}
};
// Iteration
class Solution2 {
public:
TreeNode *insertIntoBST(TreeNode *root, int val) {
if (!root) return new TreeNode(val);
TreeNode *node = root;
while (node) {
if (val < node->val) {
if (!node->left) {
node->left = new TreeNode(val);
break;
}
node = node->left;
} else {
if (!node->right) {
node->right = new TreeNode(val);
break;
}
node = node->right;
}
}
return root;
}
};
// Iteration, Double Pointer
class Solution3 {
public:
TreeNode *insertIntoBST(TreeNode *root, int val) {
// Find
TreeNode **nodePtr = &root;
while (*nodePtr) {
if (val < (*nodePtr)->val) {
nodePtr = &((*nodePtr)->left);
} else {
nodePtr = &((*nodePtr)->right);
}
}
// Insert
*nodePtr = new TreeNode(val);
return root;
}
};
// Iteration, Reference Wrapper
class Solution4 {
using NodeRef = reference_wrapper<TreeNode *>;
public:
TreeNode *insertIntoBST(TreeNode *root, int val) {
// Find
NodeRef nodeRef = root;
while (nodeRef.get()) {
if (val < nodeRef.get()->val) {
nodeRef = nodeRef.get()->left;
} else {
nodeRef = nodeRef.get()->right;
}
}
// Insert
nodeRef.get() = new TreeNode(val);
return root;
}
};