102. Binary Tree Level Order Traversal

problem description

Given a binary tree, return the level order traversal of its nodes' values. (ie, from left to right, level by level).

For example: Given binary tree [3,9,20,null,null,15,7],

    3
   / \
  9  20
    /  \
   15   7

return its level order traversal as:

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

algorithm thought

二叉树层次遍历,使用queue辅助解决,必须掌握的题目

code

algorithm analysis

遍历一棵树,时间复杂度O(n)

Last updated