leetcode513 FindBottomLeftTreeValue Java
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode513 FindBottomLeftTreeValue Java相关的知识,希望对你有一定的参考价值。
1、递归算法 很好理解
1 int res = 0,h = 0; 2 public int findBottomLeftValue(TreeNode root) { 3 findBottomLeftValue(root, 1); 4 return res; 5 } 6 public void findBottomLeftValue(TreeNode root, int depth) { 7 if(h < depth) {res=root.val; h=depth;} 8 if(root.left != null) findBottomLeftValue(root.left, depth+1); 9 if(root.right !=null) findBottomLeftValue(root.right, depth+1); 10 }
以上是关于leetcode513 FindBottomLeftTreeValue Java的主要内容,如果未能解决你的问题,请参考以下文章
leetcode513 FindBottomLeftTreeValue Java
[LeetCode] 513. Find Bottom Left Tree Value
513. Find Bottom Left Tree Value - LeetCode
LeetCode - 513. Find Bottom Left Tree Value