摘要:
```java package BST; import java.util.*; public class BST { /* * 重建二叉树 * 先找到root,再递归构建root的左子树root.left和右子树root.right * */ public TreeNode reConstructBinaryTree(int[] pre, int[] in) { if (pre == null 阅读全文
posted @ 2019-11-23 18:01
susanhe
阅读(150)
评论(0)
推荐(0)

浙公网安备 33010602011771号