求二叉树的高度 递归&非递归实现


/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    public int maxDepth(TreeNode root) {

// 递归
// if (null == root) { // return 0; // } // if (null == root.left && null == root.right) { // return 1; // } // if (maxDepth(root.left) >= maxDepth(root.right)) { // return 1 + maxDepth(root.left); // } else { // return 1 + maxDepth(root.right); // }
// 非递归 if (null == root) { return 0; } if (null == root.left && null == root.right) { return 1; } int depth = 0; Queue<TreeNode> queue = new ArrayDeque<>(); queue.add(root); while (queue.size()>0){ int index = queue.size(); depth++; for (int i=0;i<index;i++){ TreeNode node = queue.remove(); if (null != node.left || null != node.right){ if (null != node.left){ queue.add(node.left); } if (null != node.right){ queue.add(node.right); } } } } return depth; } }

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM