题目链接
https://leetcode-cn.com/problems/increasing-order-search-tree/solution/di-zeng-shun-xu-cha-zhao-shu-by-leetcode/
描述
给你一个树,请你 按中序遍历 重新排列树,使树中最左边的结点现在是树的根,并且每个结点没有左子结点,只有一个右子结点。
提示:
给定树中的结点数介于 1 和 100 之间。
每个结点都有一个从 0 到 1000 范围内的唯一整数值。
示例
输入:[5,3,6,2,4,null,8,1,null,null,null,7,9]
5
/ \
3 6
/ \ \
2 4 8
/ / \
1 7 9
输出:[1,null,2,null,3,null,4,null,5,null,6,null,7,null,8,null,9]
1
\
2
\
3
\
4
\
5
\
6
\
7
\
8
\
9
初始代码模板
class Solution {
public TreeNode increasingBST(TreeNode root) {
}
}
代码
class Solution {
TreeNode prev;
public TreeNode increasingBST(TreeNode root) {
TreeNode node = new TreeNode(-1);
prev = node;
inorder(root);
return node.right;
}
private void inorder(TreeNode root) {
if (root == null) {
return;
}
inorder(root.left);
root.left = null;
prev.right = root;
prev = root;
inorder(root.right);
}
}