Arrays.asList

Posted rempop

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Arrays.asList相关的知识,希望对你有一定的参考价值。

Leetcode 111 二叉树最小深度

给定一颗二叉树,求根节点到叶子节点的最短路径(最小深度)

class Solution{
    public int minDepth(TreeNode root){
        //若无根节点(空树),则返回0
        if(root==null) {
            return 0;
        }
        //叶子节点,向上返回1,递归结束
        else if(root!=null && root.left==null && root.right==null)
        else {
            //子树非空,继续向下搜索到根节点
            if(root.left!=null && root.right==null) {
                return 1 + minDepth(root.left);
            }
            else if(root.left==null && root.right!=null) {
                return 1 + minDepth(root.right);
            }
            else(root.left!=null && root.right!=null) {
                return 1 + Math.min(minDepth(root.left), minDepth(root.right));
            }
        }
    }
}

以上是关于Arrays.asList的主要内容,如果未能解决你的问题,请参考以下文章

Arrays.asList中所遇到的坑

正确认识Arrays.asList方法

Arrays类--Arrays.asList()方法使用

聊聊Arrays.asList()踩过的那些坑

聊聊Arrays.asList()踩过的那些坑

聊聊Arrays.asList()踩过的那些坑