题目
My way
手动队列BFS + reverse结果
1 | /** |
递归BFS + 逆序
1 | /** |
有没有办法遍历的时候直接逆序插入呢??
总结
- 递归方式BFS实现层次遍历时,需要在
vector<vector<int>>
的对应层数上存储,所以在helper
函数上,需要传参
References
https://leetcode-cn.com/problems/binary-tree-level-order-traversal/solution/er-cha-shu-ceng-ci-bian-li-c-by-huang-fu-mai-yan/