Merge pull request #2489 from liyubin117/patch-1
Correct typo in 0102.二叉树的层序遍历.md
This commit is contained in:
commit
1f5fe509e7
|
|
@ -129,7 +129,7 @@ class Solution {
|
|||
return resList;
|
||||
}
|
||||
|
||||
//DFS--递归方式
|
||||
//BFS--递归方式
|
||||
public void checkFun01(TreeNode node, Integer deep) {
|
||||
if (node == null) return;
|
||||
deep++;
|
||||
|
|
|
|||
Loading…
Reference in New Issue