求二叉樹的高度 遞歸&非遞歸實現


/**
 * 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