题目
递归实现
利用二叉搜索树的前序遍历结果中的左子树序列中的值都小于根节点。
1 | /** |
手动压栈实现
1 | class Solution { |
References
https://leetcode-cn.com/problems/construct-binary-search-tree-from-preorder-traversal/solution/jian-kong-er-cha-shu-by-leetcode/
Just a Blog
利用二叉搜索树的前序遍历结果中的左子树序列中的值都小于根节点。
1 | /** |
1 | class Solution { |
https://leetcode-cn.com/problems/construct-binary-search-tree-from-preorder-traversal/solution/jian-kong-er-cha-shu-by-leetcode/