牛客NC248 左叶子之和【simple 遍历 Java,Go,PHP】

题目

在这里插入图片描述
在这里插入图片描述
题目链接:
https://www.nowcoder.com/practice/405a9033800b403ba8b7b905bab0463d

思考

	 这是一道简单题,中序,前序,后序,层序遍历都可以
	 本答案利用层序遍历。BFS

参考答案Java

import java.util.*;

/*
 * public class TreeNode {
 *   int val = 0;
 *   TreeNode left = null;
 *   TreeNode right = null;
 *   public TreeNode(int val) {
 *     this.val = val;
 *   }
 * }
 */

public class Solution {
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     *
     * @param root TreeNode类
     * @return int整型
     */
    public int sumOfLeftLeaves (TreeNode root) {


        Queue<TreeNode> q = new LinkedList<>();

        TreeNode cur = root;
        q.add(cur);

        int ans = 0;
        while (!q.isEmpty()) {
            int size = q.size();
            for (int i = 0; i < size; i++) {
                TreeNode pop = q.poll();

                if (pop.left != null) {
                    q.add(pop.left);
                    if (pop.left.left == null && pop.left.right == null) {
                        ans += pop.left.val;
                    }
                }

                if (pop.right != null) {
                    q.add(pop.right);

                }
            }
        }




        return ans;
    }


}

参考答案Go

package main


import . "nc_tools"

/*
 * type TreeNode struct {
 *   Val int
 *   Left *TreeNode
 *   Right *TreeNode
 * }
 */

/**
 * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
 *
 *
 * @param root TreeNode类
 * @return int整型
 */
func sumOfLeftLeaves(root *TreeNode) int {
	cur := root
	q := []*TreeNode{}
	q = append(q, cur)


ans := 0
	for len(q) > 0 {
		size := len(q)

		qnew := []*TreeNode{}
		for i := 0; i < size; i++ {
			pop := q[i]

			
			if pop.Left != nil {
				qnew = append(qnew, pop.Left)
				if pop.Left.Left ==nil && pop.Left.Right ==nil{
                    ans = ans+ pop.Left.Val
                }
			}

			if pop.Right != nil {
				qnew = append(qnew, pop.Right)
				
			}
		}
		q = qnew
	}

	

	return ans
}

参考答案PHP

<?php

/*class TreeNode{
    var $val;
    var $left = NULL;
    var $right = NULL;
    function __construct($val){
        $this->val = $val;
    }
}*/

/**
 * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
 *
 * 
 * @param root TreeNode类 
 * @return int整型
 */
function sumOfLeftLeaves( $root )
{
     $q = [$root];
    $ans = 0;
    while (count($q) > 0) {
        $qnew = array();
        $size = count($q);

        for ($i = 0; $i < $size; $i++) {
            $pop = $q[$i];
           // $idx = $qindex[$i];

             if ($pop->left != null) {
                 array_push($qnew, $pop->left);
                 if($pop->left->left ==null && $pop->left->right ==null){
                     $ans +=$pop->left->val;
                 }
            }

             if($pop->right!=null){
                array_push($qnew, $pop->right);

            }
        }
        $q = $qnew;
    }


    return $ans;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

赵长辉

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值