列表

详情


剑指 Offer 32 - II. 从上到下打印二叉树 II

从上到下按层打印二叉树,同一层的节点按从左到右的顺序打印,每一层打印到一行。

 

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

    3
   / \
  9  20
    /  \
   15   7

返回其层次遍历结果:

[
  [3],
  [9,20],
  [15,7]
]

 

提示:

  1. 节点总数 <= 1000

注意:本题与主站 102 题相同:https://leetcode.cn/problems/binary-tree-level-order-traversal/

原站题解

去查看

上次编辑到这里,代码来自缓存 点击恢复默认模板
/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */ class Solution { public: vector<vector<int>> levelOrder(TreeNode* root) { } };

php 解法, 执行用时: 8 ms, 内存消耗: 15.9 MB, 提交时间: 2021-05-10 16:56:30

/**
 * 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) {
        if ( $root == null ) return [];
        $res = [];
        $queue = [$root];

        while ( !empty($queue) ) {
            $tmp = [];
            $cnt = count($queue);
            for ( $i = 0; $i < $cnt; $i++ ) {
                $node = array_shift($queue);
                $tmp[] = $node->val;
                if ( $node->left ) $queue[] = $node->left;
                if ( $node->right ) $queue[] = $node->right;
            }
            $res[] = $tmp;
        }
        return $res;
    }
}

上一题