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
commit 1f5fe509e7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

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