From d0504d4ffed670c9714b3bba0301ff51b8025bb0 Mon Sep 17 00:00:00 2001 From: Yifeng Date: Wed, 11 Aug 2021 03:26:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=94=99=E8=AF=AF=E8=AF=AD?= =?UTF-8?q?=E6=84=8F=E8=A1=A8=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 把 “节点10小于左节点5,大于右节点15” 改为 “节点10大于左节点5,小于右节点15” --- problems/0098.验证二叉搜索树.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/problems/0098.验证二叉搜索树.md b/problems/0098.验证二叉搜索树.md index d6db901e..6f7e5c14 100644 --- a/problems/0098.验证二叉搜索树.md +++ b/problems/0098.验证二叉搜索树.md @@ -103,7 +103,7 @@ if (root->val > root->left->val && root->val < root->right->val) { ![二叉搜索树](https://img-blog.csdnimg.cn/20200812191501419.png) -节点10小于左节点5,大于右节点15,但右子树里出现了一个6 这就不符合了! +节点10大于左节点5,小于右节点15,但右子树里出现了一个6 这就不符合了! * 陷阱2