牛客4913417
牛客4913417
全部文章
分类
题解(36)
归档
标签
去牛客网
登录
/
注册
牛客4913417的博客
全部文章
(共1篇)
二叉树的层次遍历
//注意的就是在循环中最后不要以queue.size()作为条件,因为有add,poll操作 长度会变 public ArrayList<ArrayList<Integer>> levelOrder (TreeNode root) { // write cod...
二叉树
bfs
2021-01-27
0
512