一:题目
二:上码
/**
* Definition for a binary tree node.
* 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) {}
* };
*/
class Solution {
public:
/**
思路:
1.递归三部曲
(1):确定递归函数的参数和返回值
TreeNode* insertIntoBST(TreeNode* root, int val)
(2):确定递归函数的终止条件
当我们遍历到空结点的时候,我们就已经是找到要插入的位置了
if(root == NULL) {
TreeNode* node = new TreeNode(val);
return node;//将其返回回去
}
(3):确定递归函数的递归体
if(root->val > val) root->left = insertIntoBST(root->left,val);
if(root->val < val) root->right = insertIntoBST(root->right,val);
*/
TreeNode* insertIntoBST(TreeNode* root, int val) {
if(root == NULL) {
TreeNode* node = new TreeNode(val);
return node;//将其返回回去
}
if(root->val > val) root->left = insertIntoBST(root->left,val);
if(root->val < val) root->right = insertIntoBST(root->right,val);
return root;//返回跟根节点
}
};
20多岁真是个神奇阶段,
有的人都工作很多年了,有的人还实习都没参加过,
有的人孩子和老婆都有了,有的人还在上学,
有的人内心还是个小孩子,有的人早已经饱尝生活中的艰苦;
。。。。。。。。。。。。。。。。。。。。。。。。。。。。。
晚安