码迷,mamicode.com
首页 > 其他好文 > 详细

面试题32 - II. 从上到下打印二叉树 II

时间:2020-05-20 18:44:10      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:试题   roo   ble   root   ++   结果   problem   return   etc   

地址:https://leetcode-cn.com/problems/cong-shang-dao-xia-da-yin-er-cha-shu-ii-lcof/

<?php
/**
面试题32 - II. 从上到下打印二叉树 II
从上到下按层打印二叉树,同一层的节点按从左到右的顺序打印,每一层打印到一行。



例如:
给定二叉树: [3,9,20,null,null,15,7],

3
/ 9  20
/  15   7
返回其层次遍历结果:

[
[3],
[9,20],
[15,7]
]
 */
/**
 * Definition for a binary tree node.
 * class TreeNode {
 *     public $val = null;
 *     public $left = null;
 *     public $right = null;
 *     function __construct($value) { $this->val = $value; }
 * }
 */
class Solution {

    /**
     * @param TreeNode $root
     * @return Integer[][]
     */
    function levelOrder($root) {
        $res= [];
        $this->helper($root,0,$res);
        return $res;
    }

    function helper($root,$level,&$res){
        if($root == null) return null;
        $res[$level][]=$root->val;
        $level++;
        if($root->left != null){
            $this->helper($root->left,$level,$res);
        }

        if($root->right != null){
            $this->helper($root->right,$level,$res);
        }
    }
}

 

面试题32 - II. 从上到下打印二叉树 II

标签:试题   roo   ble   root   ++   结果   problem   return   etc   

原文地址:https://www.cnblogs.com/8013-cmf/p/12925219.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!