• LeetCode每日一道(1)


    问题描述:

      求给定二叉树的最小深度。最小深度是指树的根结点到最近叶子结点的最短路径上结点的数量。
      Given a binary tree, find its minimum depth.The minimum depth is the number of nodes along the shortest path from the root node down to the nearest leaf node.
     
    思路:采用递归实现,每次判断节点是否存在左右子节点。
    /**
     * Definition for binary tree
     * public class TreeNode {
     *     int val;
     *     TreeNode left;
     *     TreeNode right;
     *     TreeNode(int x) { val = x; }
     * }
     */
    public class Solution {
        public int run(TreeNode root) {
            if(root == null){
                return 0;
            }
            if(root.left == null && root.right ==null){
                return 1;
            }
    // 只存在右子树的情况
            if(root.left == null){
                return run(root.right)+1;
            }
    // 只存在左子树的情况
            if(root.right == null){
                return run(root.left) + 1;
            }
    // 左右子树都存在的情况
            int leftCount = run(root.left)+1;
            int rightCount = run(root.right)+1;
            return leftCount>rightCount ? rightCount : leftCount;
        }
    }
  • 相关阅读:
    asp .net 文件浏览功能
    Angular组件间的数据传输
    Angular自定义表单验证
    asp .net Cookies
    带参跳转其他controller
    asp .net 页面跳转
    发送邮件
    ubuntu之Matlab安装
    清华宿舍楼
    ubuntu窗口打开指定文件夹
  • 原文地址:https://www.cnblogs.com/lc1475373861/p/12007085.html
Copyright © 2020-2023  润新知