面试39---二叉树的深度
Posted 二十年后20
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了面试39---二叉树的深度相关的知识,希望对你有一定的参考价值。
求解二叉树的深度,延伸可见leetcode110题。
法一:dfs。
1 private int TreeDepth(TreeNode root) { 2 if(root == null) { 3 return 0; 4 } 5 int l = TreeDepth(root.left); 6 int r = TreeDepth(root.right); 7 return (l > r) ? (l + 1) : (r + 1); 8 }
以上是关于面试39---二叉树的深度的主要内容,如果未能解决你的问题,请参考以下文章