Leaf-Similar Trees 环境:python 3.6,scala 2.11.8 题意 一棵二叉树上所有叶子的值,按从左到右的顺序排列形成一个 叶值序列 。 如果有...
Leaf-Similar Trees 环境:python 3.6,scala 2.11.8 题意 一棵二叉树上所有叶子的值,按从左到右的顺序排列形成一个 叶值序列 。 如果有...
Binary Tree Level Order Traversal II 环境:python 3.6,scala 2.11.8 题意 二叉树的层序遍历 II. 返回结果自底向...
Univalued Binary Tree 环境:python 3.6,scala 2.11.8 题意 如果二叉树每个节点都具有相同的值,那么该二叉树就是单值二叉树。 只有给...
Minimum Depth of Binary Tree 环境:python 3.6,scala 2.11.8 题意 给定一个二叉树,找出其最小深度。 最小深度是从根节点到最...
Balanced Binary Tree 环境:python 3.6,scala 2.11.8 题意 判断一个二叉树是否为高度平衡的二叉树。 一棵高度平衡二叉树定义为:一个二...
Maximum Depth of Binary Tree 环境:python 3.6,scala 2.11.8 题意 二叉树的深度为根节点到最远叶子节点的最长路径上的节点数 ...
Symmetric Tree 环境:python 3.6,scala 2.11.8 题意 判断是否对称二叉树(以根节点为中垂线镜像对称,包括结构和节点值)。 分析 转换思路:...
Same Tree 环境:python 3.6,scala 2.11.8 题意 判断两颗二叉树是否相同(结构相同 + 各节点值相同)。 分析 首先,题意非常明确:当两颗树结构...
Deepest Leaves Sum环境:python 3.6,scala 2.11.8,A song[https://music.163.com/#/song?id=261...
环境:python 3.6,scala 2.11.8 题意 二叉树的垂序遍历: 假设某节点坐标为,则其左右子节点坐标为、; 返回二维列表,坐标相同的节点会被添加至同一个子列表...
环境:python 3.6,scala 2.11.8 题意 按二叉树的层次/深度遍历,自上而下,从左到右。 分析 相关分析可移步至 N 叉树的层次遍历[https://www...
环境:python 3.6,scala 2.11.8 题意 N 叉树的后序遍历 分析 递归+栈; 可参考二叉树的后序遍历[https://www.jianshu.com/p/...
环境:python 3.6,scala 2.11.8 题意 N 叉树的先序遍历 分析 与二叉树先序遍历[https://www.jianshu.com/p/599f14cdd...
环境:python 3.6,scala 2.11.8 题意 N叉树的层次遍历,题意比较清晰,具体可戳此[https://leetcode.com/problems/n-ary...
环境:python 3.6,scala 2.11.8 题意 二叉树的后序遍历 分析 基础题型。 后序遍历:对一颗二叉树及其子树的遍历顺序为,左子树->右子树->根节点; 递归...
环境:python 3.6,scala 2.11.8 题意 二叉树的先序遍历 分析 基础题型,不作过多文字叙述。 先序遍历:对一颗二叉树及其子树的遍历顺序为,根节点->左子树...
环境:python 3.6,scala 2.11.8 题意 二叉树的中序遍历 分析 基础题型,不作过多文字叙述。 中序遍历:对一颗二叉树及其子树的遍历顺序为,左子树->根节点...