求二叉树中叶子结点的个数(递归和非递归的方式实现)

这篇博客介绍了如何求解二叉树中叶子节点的数量,包括利用先序遍历的递归方法和非递归方式。通过分析叶子节点的特性——左右孩子都为空,来实现计数算法。
摘要由CSDN通过智能技术生成

思路:

(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(no
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值