701:二叉搜索树中的插入操作
This commit is contained in:
parent
111ed81765
commit
7952063977
@ -0,0 +1,102 @@
|
||||
//给定二叉搜索树(BST)的根节点和要插入树中的值,将值插入二叉搜索树。 返回插入后二叉搜索树的根节点。 输入数据 保证 ,新值和原始二叉搜索树中的任意节点值
|
||||
//都不同。
|
||||
//
|
||||
// 注意,可能存在多种有效的插入方式,只要树在插入后仍保持为二叉搜索树即可。 你可以返回 任意有效的结果 。
|
||||
//
|
||||
//
|
||||
//
|
||||
// 示例 1:
|
||||
//
|
||||
//
|
||||
//输入:root = [4,2,7,1,3], val = 5
|
||||
//输出:[4,2,7,1,3,5]
|
||||
//解释:另一个满足题目要求可以通过的树是:
|
||||
//
|
||||
//
|
||||
//
|
||||
// 示例 2:
|
||||
//
|
||||
//
|
||||
//输入:root = [40,20,60,10,30,50,70], val = 25
|
||||
//输出:[40,20,60,10,30,50,70,null,null,25]
|
||||
//
|
||||
//
|
||||
// 示例 3:
|
||||
//
|
||||
//
|
||||
//输入:root = [4,2,7,1,3,null,null,null,null,null,null], val = 5
|
||||
//输出:[4,2,7,1,3,5]
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
// 提示:
|
||||
//
|
||||
//
|
||||
// 给定的树上的节点数介于 0 和 10^4 之间
|
||||
// 每个节点都有一个唯一整数值,取值范围从 0 到 10^8
|
||||
// -10^8 <= val <= 10^8
|
||||
// 新值和原始二叉搜索树中的任意节点值都不同
|
||||
//
|
||||
// Related Topics 树 二叉搜索树 二叉树 👍 229 👎 0
|
||||
|
||||
package leetcode.editor.cn;
|
||||
|
||||
import com.code.leet.entiy.TreeNode;
|
||||
|
||||
//701:二叉搜索树中的插入操作
|
||||
class InsertIntoABinarySearchTree {
|
||||
public static void main(String[] args) {
|
||||
//测试代码
|
||||
Solution solution = new InsertIntoABinarySearchTree().new Solution();
|
||||
}
|
||||
|
||||
//力扣代码
|
||||
//leetcode submit region begin(Prohibit modification and deletion)
|
||||
|
||||
/**
|
||||
* Definition for a binary tree node.
|
||||
* public class TreeNode {
|
||||
* int val;
|
||||
* TreeNode left;
|
||||
* TreeNode right;
|
||||
* TreeNode() {}
|
||||
* TreeNode(int val) { this.val = val; }
|
||||
* TreeNode(int val, TreeNode left, TreeNode right) {
|
||||
* this.val = val;
|
||||
* this.left = left;
|
||||
* this.right = right;
|
||||
* }
|
||||
* }
|
||||
*/
|
||||
class Solution {
|
||||
public TreeNode insertIntoBST(TreeNode root, int val) {
|
||||
if (root == null) {
|
||||
return new TreeNode(val);
|
||||
}
|
||||
TreeNode node = root;
|
||||
while (true) {
|
||||
if (node.val > val) {
|
||||
if (node.left == null) {
|
||||
node.left = new TreeNode(val);
|
||||
break;
|
||||
} else {
|
||||
node = node.left;
|
||||
}
|
||||
} else {
|
||||
if (node.right == null) {
|
||||
node.right = new TreeNode(val);
|
||||
break;
|
||||
} else {
|
||||
node = node.right;
|
||||
}
|
||||
}
|
||||
}
|
||||
return root;
|
||||
}
|
||||
}
|
||||
//leetcode submit region end(Prohibit modification and deletion)
|
||||
|
||||
}
|
@ -0,0 +1,42 @@
|
||||
<p>给定二叉搜索树(BST)的根节点和要插入树中的值,将值插入二叉搜索树。 返回插入后二叉搜索树的根节点。 输入数据 <strong>保证</strong> ,新值和原始二叉搜索树中的任意节点值都不同。</p>
|
||||
|
||||
<p><strong>注意</strong>,可能存在多种有效的插入方式,只要树在插入后仍保持为二叉搜索树即可。 你可以返回 <strong>任意有效的结果</strong> 。</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>示例 1:</strong></p>
|
||||
<img alt="" src="https://assets.leetcode.com/uploads/2020/10/05/insertbst.jpg" style="width: 752px; height: 221px;" />
|
||||
<pre>
|
||||
<strong>输入:</strong>root = [4,2,7,1,3], val = 5
|
||||
<strong>输出:</strong>[4,2,7,1,3,5]
|
||||
<strong>解释:</strong>另一个满足题目要求可以通过的树是:
|
||||
<img alt="" src="https://assets.leetcode.com/uploads/2020/10/05/bst.jpg" style="width: 352px; height: 301px;" />
|
||||
</pre>
|
||||
|
||||
<p><strong>示例 2:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong>root = [40,20,60,10,30,50,70], val = 25
|
||||
<strong>输出:</strong>[40,20,60,10,30,50,70,null,null,25]
|
||||
</pre>
|
||||
|
||||
<p><strong>示例 3:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong>root = [4,2,7,1,3,null,null,null,null,null,null], val = 5
|
||||
<strong>输出:</strong>[4,2,7,1,3,5]
|
||||
</pre>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>提示:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>给定的树上的节点数介于 <code>0</code> 和 <code>10^4</code> 之间</li>
|
||||
<li>每个节点都有一个唯一整数值,取值范围从 <code>0</code> 到 <code>10^8</code></li>
|
||||
<li><code>-10^8 <= val <= 10^8</code></li>
|
||||
<li>新值和原始二叉搜索树中的任意节点值都不同</li>
|
||||
</ul>
|
||||
<div><div>Related Topics</div><div><li>树</li><li>二叉搜索树</li><li>二叉树</li></div></div><br><div><li>👍 229</li><li>👎 0</li></div>
|
Loading…
Reference in New Issue
Block a user