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