赞
踩
解题思路:
- class Solution {
- int ans;//记录节点数
- public int diameterOfBinaryTree(TreeNode root) {
- ans = 1;
- depth(root);
- return ans - 1;//节点数减 1 就是路径长度
- }
-
- public int depth(TreeNode root) {
- if (root == null) return 0;
-
- int l = depth(root.left);
- int r = depth(root.right);
- ans = Math.max(ans, l + r + 1);
- return Math.max(l, r) + 1;
- }
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。