摘要:
需要注意边界条件以及 环 的处理。 JAVA 中序遍历: public final TreeNode convertBiNode(TreeNode root) { return dfs2(root); } public final TreeNode dfs2(TreeNode node) { if 阅读全文
摘要:
DFS 解法: public final int findBottomLeftValue(TreeNode root) { if (root == null) return 0; return find(root, 0).node.val; } private final NodeAndDepth 阅读全文