求二叉树中叶子节点的个数

Posted hglibin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求二叉树中叶子节点的个数相关的知识,希望对你有一定的参考价值。

求二叉树中叶子节点的个数

面试题二叉树

题目描述
求二叉树中叶子节点的个数。

叶子节点的定义:如果一个节点既没有左孩子,也没有右孩子,则该节点为叶子节点。

示例:

    3
   /   9  20
    /     15   7

在这个二叉树中,叶子节点有 9,15,7,所以返回 3。

Java 实现

class TreeNode {
    int val;
    TreeNode left;
    TreeNode right;

    TreeNode(int x) {
        val = x;
    }
}

class Solution {
    public int getLeafCount(TreeNode root) {
        if (root == null) {
            return 0;
        }
        if (root.left == null && root.right == null) {
            // 输出叶子节点
            System.out.println("leaf nodes:" + root.val);
            return 1;
        }
        return getLeafCount(root.left) + getLeafCount(root.right);
    }
}
public class Test {
    public static void main(String[] args) {
        Solution tree = new Solution();
        /* create a tree */
        TreeNode root = new TreeNode(3);
        root.left = new TreeNode(9);
        root.right = new TreeNode(20);
        root.right.left = new TreeNode(15);
        root.right.right = new TreeNode(7);
        System.out.println(tree.getLeafCount(root));
    }
}

运行结果

leaf nodes:9
leaf nodes:15
leaf nodes:7
3

参考资料

以上是关于求二叉树中叶子节点的个数的主要内容,如果未能解决你的问题,请参考以下文章

求代码:实现二叉树中所有结点左右子树的交换

求二叉树中从根结点到叶子节点的路径

C++如何求二叉树中一个结点到根节点的路径?

数据结构算法设计——统计二叉树叶子结点的个数,并输出结果

11.求二叉树中节点的最大距离

万字总结!java语言基础知识入门