求二叉树叶子节点的个数

Posted notesbuddy

tags:

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

tag: 二叉树

 

思路:

(1)通过先序遍历的方式求解

(2)叶子节点的特点: 左右孩子都为空

 

也可以用递归方式

 

package com.zhaochao.tree;

import java.util.Stack;

/**
 * Created by zhaochao on 17/1/23.
 * 叶子结点的特点: 左右孩子都为空
 * 通过先序的方式找到叶子结点
 *
 */
public class LeafNumber {

    int flag = 0;

    public int getCountsOfLeaves(TreeNode root) {
        int count = 0;
        if(root == null) {
            return count;
        }
        Stack<TreeNode> stack = new Stack<TreeNode>();
        stack.push(root);
        while(!stack.isEmpty()) {
            TreeNode node = stack.pop();
            if(node.left == null && node.right == null) {
                count++;
            }
            if(node.right != null) {
                stack.push(node.right);
            }
            if(node.left != null) {
                stack.push(node.left);
            }
        }
        return count;
    }

    //递归求解
    public void getCountRec(TreeNode root) {
        if(root == null) {
            return;
        }
        if(root.left == null && root.right == null) {
            flag++;
        }
        getCountRec(root.left);
        getCountRec(root.right);
    }

    public static void main(String[] args) {
        TreeNode root = new TreeNode(0);
        TreeNode node1 = new TreeNode(1);
        TreeNode node2 = new TreeNode(2);
        TreeNode node3 = new TreeNode(3);
        TreeNode node4 = new TreeNode(4);

        root.left = node1;
        root.right = node2;
        node2.left = node3;
        node2.right = node4;

        LeafNumber test = new LeafNumber();
        int count = 0;
        count = test.getCountsOfLeaves(root);

        System.out.println("The number of nodes in the tree is " + count);

        test.getCountRec(root);
        System.out.println("Recursion : the number of nodes in the tree is " + test.flag);


    }


}

  

  

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

java 求二叉树的叶子结点,下面的代码不知道哪里出错了!

求二叉树叶子节点的个数

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

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

二叉树算法之1-计算二叉树第k层节点个数

java数据结构二叉树查找结点操作,递归调用求详细讲解