Merge pull request #2489 from liyubin117/patch-1

Correct typo in 0102.二叉树的层序遍历.md
This commit is contained in:
程序员Carl
2024-04-25 20:44:05 +08:00
committed by GitHub

View File

@ -129,7 +129,7 @@ class Solution {
return resList;
}
//DFS--递归方式
//BFS--递归方式
public void checkFun01(TreeNode node, Integer deep) {
if (node == null) return;
deep++;