标签:nod interview odi int -- leetcode 面试 isp gif
求解二叉树的深度,延伸可见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 }
标签:nod interview odi int -- leetcode 面试 isp gif
原文地址:https://www.cnblogs.com/cing/p/9013334.html