Correct typo in 0102.二叉树的层序遍历.md

This commit is contained in:
Yubin Li 2024-03-19 20:40:46 +08:00 committed by GitHub
parent 253bddcf37
commit 7117871bee
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++;