添加 0102.二叉树的层序遍历.md Java版本

This commit is contained in:
doo0301
2021-05-12 16:08:09 +08:00
parent 612d400c36
commit f44cade011

View File

@ -421,6 +421,7 @@ Java
``` Java
class Solution {
public List<List<Integer>> resList=new ArrayList<List<Integer>>();
public List<List<Integer>> levelOrder(TreeNode root) {