897:递增顺序搜索树

This commit is contained in:
huangge1199 2021-04-25 08:41:05 +08:00
parent d96b90471b
commit e55f00394f
4 changed files with 110 additions and 2 deletions

View File

@ -13,7 +13,7 @@ public class TreeNode {
public Integer val;
public TreeNode right;
TreeNode() {
public TreeNode() {
}
public TreeNode(int val) {

View File

@ -0,0 +1,81 @@
//给你一棵二叉搜索树请你 按中序遍历 将其重新排列为一棵递增顺序搜索树使树中最左边的节点成为树的根节点并且每个节点没有左子节点只有一个右子节点
//
//
//
// 示例 1
//
//
//输入root = [5,3,6,2,4,null,8,1,null,null,null,7,9]
//输出[1,null,2,null,3,null,4,null,5,null,6,null,7,null,8,null,9]
//
//
// 示例 2
//
//
//输入root = [5,1,7]
//输出[1,null,5,null,7]
//
//
//
//
// 提示
//
//
// 树中节点数的取值范围是 [1, 100]
// 0 <= Node.val <= 1000
//
// Related Topics 深度优先搜索 递归
// 👍 154 👎 0
package leetcode.editor.cn;
import com.code.leet.entiy.TreeNode;
import java.util.Stack;
//897:递增顺序搜索树
public class IncreasingOrderSearchTree{
public static void main(String[] args) {
//测试代码
Solution solution = new IncreasingOrderSearchTree().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 {
private TreeNode temp;
public TreeNode increasingBST(TreeNode root) {
TreeNode treeNode = new TreeNode(0);
temp = treeNode;
bst(root);
return treeNode.right;
}
private void bst(TreeNode node){
if (node == null) {
return ;
}
bst(node.left);
temp.right = node;
node.left=null;
temp = node;
bst(node.right);
}
}
//leetcode submit region end(Prohibit modification and deletion)
}

View File

@ -0,0 +1,27 @@
<p>给你一棵二叉搜索树,请你 <strong>按中序遍历</strong> 将其重新排列为一棵递增顺序搜索树,使树中最左边的节点成为树的根节点,并且每个节点没有左子节点,只有一个右子节点。</p>
<p> </p>
<p><strong>示例 1</strong></p>
<img alt="" src="https://assets.leetcode.com/uploads/2020/11/17/ex1.jpg" style="width: 600px; height: 350px;" />
<pre>
<strong>输入:</strong>root = [5,3,6,2,4,null,8,1,null,null,null,7,9]
<strong>输出:</strong>[1,null,2,null,3,null,4,null,5,null,6,null,7,null,8,null,9]
</pre>
<p><strong>示例 2</strong></p>
<img alt="" src="https://assets.leetcode.com/uploads/2020/11/17/ex2.jpg" style="width: 300px; height: 114px;" />
<pre>
<strong>输入:</strong>root = [5,1,7]
<strong>输出:</strong>[1,null,5,null,7]
</pre>
<p> </p>
<p><strong>提示:</strong></p>
<ul>
<li>树中节点数的取值范围是 <code>[1, 100]</code></li>
<li><code>0 <= Node.val <= 1000</code></li>
</ul>
<div><div>Related Topics</div><div><li></li><li>深度优先搜索</li><li>递归</li></div></div>\n<div><li>👍 154</li><li>👎 0</li></div>

File diff suppressed because one or more lines are too long