From b62f20d8eb7308dc401748a126fb07057252a628 Mon Sep 17 00:00:00 2001 From: unlockable Date: Wed, 29 Nov 2023 21:08:28 +0800 Subject: [PATCH] Fix merge. --- 2023206/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2023206/main.cpp b/2023206/main.cpp index 146a1d3..c35c35f 100644 --- a/2023206/main.cpp +++ b/2023206/main.cpp @@ -84,7 +84,7 @@ int delete_node(int num, int pos) { while (tree[child].left < NOTHING) { parent = child; child = tree[child].left; - // tree[parent].size--; + tree[parent].size--; } if (parent == pos) {