题目
Return the root node of a binary search tree that matches the given preorder traversal.
(Recall that a binary search tree is a binary tree where for every node, any descendant of node.left has a value < node.val, and any descendant of node.right has a value > node.val. Also recall that a preorder traversal displays the value of the node first, then traverses node.left, then traverses node.right.)
Example 1:
1 | Input: [8,5,1,7,10,12] |
Note:
1 <= preorder.length <= 100
- The values of preorder are distinct.
思路
递归。
先序遍历第一个数字即为根节点,又BST的左子树都比根节点小,而先序遍历要把左子树遍历结束才遍历右子树,所以向后找第一个大于根节点数字位置,该位置就是右子树的根节点。
代码
1 | # Definition for a binary tree node. |