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

View File

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