From cff7999479528160b104ae8f7709456a1f193ecc Mon Sep 17 00:00:00 2001 From: Yanshi XU Date: Sat, 16 Mar 2024 18:02:00 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=94=99=E5=88=AB=E5=AD=97:?= =?UTF-8?q?=2020201003=E4=BA=8C=E5=8F=89=E6=A0=91=E5=91=A8=E6=9C=AB?= =?UTF-8?q?=E6=80=BB=E7=BB=93.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修改错别字 --- problems/周总结/20201003二叉树周末总结.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/problems/周总结/20201003二叉树周末总结.md b/problems/周总结/20201003二叉树周末总结.md index 4b73e663..ea508224 100644 --- a/problems/周总结/20201003二叉树周末总结.md +++ b/problems/周总结/20201003二叉树周末总结.md @@ -13,7 +13,7 @@ 而本题的迭代法中我们使用了队列,需要注意的是这不是层序遍历,而且仅仅通过一个容器来成对的存放我们要比较的元素,认识到这一点之后就发现:用队列,用栈,甚至用数组,都是可以的。 -那么做完本题之后,在看如下两个题目。 +那么做完本题之后,再看如下两个题目。 * [100.相同的树](https://leetcode.cn/problems/same-tree/description/) * [572.另一个树的子树](https://leetcode.cn/problems/subtree-of-another-tree/)