We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 830c2f7 commit c79b7a3Copy full SHA for c79b7a3
problems/102.binary-tree-level-order-traversal.md
@@ -27,6 +27,8 @@ https://leetcode.com/problems/binary-tree-level-order-traversal/description/
27
28
## 思路
29
30
+这是一个典型的二叉树遍历问题, 关于二叉树遍历,我总结了一个[专题](https://github.com/azl397985856/leetcode/blob/master/thinkings/binary-tree-traversal.md),大家可以先去看下那个,然后再来刷这道题。
31
+
32
这道题可以借助`队列`实现,首先把root入队,然后入队一个特殊元素Null(来表示每层的结束)。
33
34
0 commit comments