题目:https://leetcode.com/problems/binary-tree-level-order-traversal/
代码(github):https://github.com/illuz/leetcode
求层次遍历。
- 用 BFS 遍历,放在数组中。
- 用 DFS 时放到指定层数数组中。
Name | Name | Last commit date | ||
---|---|---|---|---|
parent directory.. | ||||
题目:https://leetcode.com/problems/binary-tree-level-order-traversal/
代码(github):https://github.com/illuz/leetcode
求层次遍历。