二叉树的层次遍历 · Binary Tree Level Order Traversal

Posted 排序和map

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了二叉树的层次遍历 · Binary Tree Level Order Traversal相关的知识,希望对你有一定的参考价值。

[抄题]:

给出一棵二叉树,返回其节点值的层次遍历(逐层从左往右访问)

[思维问题]:

[一句话思路]:

[输入量]:空: 正常情况:特大:特小:程序里处理到的特殊情况:异常情况(不合法不合理的输入):

[画图]:

[一刷]:

[二刷]:

[三刷]:

[四刷]:

[五刷]:

[总结]:

[复杂度]:Time complexity: O() Space complexity: O()

[英文数据结构或算法,为什么不用别的数据结构或算法]:

[其他解法]:

[Follow Up]:

[LC给出的题目变变变]:

以上是关于二叉树的层次遍历 · Binary Tree Level Order Traversal的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode | 0102. Binary Tree Level Order Traversal二叉树的层次遍历Python

102 Binary Tree Level Order Traversal 二叉树的层次遍历

LeetCode 103. 二叉树的锯齿形层次遍历(Binary Tree Zigzag Level Order Traversal)

107 Binary Tree Level Order Traversal II 二叉树的层次遍历 II

103 Binary Tree Zigzag Level Order Traversal 二叉树的锯齿形层次遍历

leetcode 102 二叉树的层次遍历 (Binary Tree Level Order Traversal)