摘要: LeetCode 面试题26. 树的子结构【Medium】【Python】【DFS】 问题 "力扣" 输入两棵二叉树A和B,判断B是不是A的子结构。(约定空树不是任意一个树的子结构) B是A的子结构, 即 A中有出现和B相同的结构和节点值。 例如: 给定的树 A: 给定的树 B: 返回 true,因 阅读全文
posted @ 2020-03-18 23:38 Wonz 阅读(164) 评论(0) 推荐(0) 编辑
摘要: LeetCode 0836. Rectangle Overlap矩形重叠【Easy】【Python】【数学】 Problem "LeetCode" A rectangle is represented as a list , where are the coordinates of its bott 阅读全文
posted @ 2020-03-18 21:45 Wonz 阅读(233) 评论(0) 推荐(0) 编辑
摘要: LeetCode 0106. Construct Binary Tree from Inorder and Postorder Traversal从中序与后序遍历序列构造二叉树【Medium】【Python】【二叉树】【递归】 Problem "LeetCode" Given inorder and 阅读全文
posted @ 2020-03-18 21:05 Wonz 阅读(114) 评论(0) 推荐(0) 编辑
摘要: LeetCode 0105. Construct Binary Tree from Preorder and Inorder Traversal从前序与中序遍历序列构造二叉树【Medium】【Python】【二叉树】【递归】 Problem "LeetCode" Given preorder and 阅读全文
posted @ 2020-03-18 20:29 Wonz 阅读(117) 评论(0) 推荐(0) 编辑
摘要: LeetCode 面试题07. 重建二叉树【剑指Offer】【Medium】【Python】【二叉树】【递归】 问题 "力扣" 输入某二叉树的前序遍历和中序遍历的结果,请重建该二叉树。假设输入的前序遍历和中序遍历的结果中都不含重复的数字。 例如,给出 返回如下的二叉树: 限制: 代码地址 "GitH 阅读全文
posted @ 2020-03-18 20:13 Wonz 阅读(158) 评论(0) 推荐(0) 编辑