解法都在代码里,不懂就留言或者私信 /*** Definition for a binary tree node.* public class TreeNode {* int val;* TreeNode left;* TreeNode right;* TreeNode() {}* TreeNode(int val) { this.val = val;
找树左下角的值 题目链接:找树左下角的值 文档讲解:代码随想录 状态:递归没想到中右左的遍历顺序,迭代想出来了 思路:需要找最大深度,然后使用中右左的遍历顺序找最左节点 题解: int res = 0;int maxDepth = 0;public int findBottomLeftValue(TreeNode root) {dfs(root, 0);return res