From 3b3ff03e1ef05f4a5a52c5f1e83a8239ec4c30a7 Mon Sep 17 00:00:00 2001 From: Xi Cheng <49258211+XiCheng129@users.noreply.github.com> Date: Sun, 22 Jun 2025 18:45:02 -0500 Subject: [PATCH] =?UTF-8?q?Update=200203.=E7=A7=BB=E9=99=A4=E9=93=BE?= =?UTF-8?q?=E8=A1=A8=E5=85=83=E7=B4=A0.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit typo in 203.md “设置一个虚拟头结点再进行删除操作” --- ...\231\244\351\223\276\350\241\250\345\205\203\347\264\240.md" | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git "a/problems/0203.\347\247\273\351\231\244\351\223\276\350\241\250\345\205\203\347\264\240.md" "b/problems/0203.\347\247\273\351\231\244\351\223\276\350\241\250\345\205\203\347\264\240.md" index ffe04a5b07..ca418d7426 100755 --- "a/problems/0203.\347\247\273\351\231\244\351\223\276\350\241\250\345\205\203\347\264\240.md" +++ "b/problems/0203.\347\247\273\351\231\244\351\223\276\350\241\250\345\205\203\347\264\240.md" @@ -51,7 +51,7 @@ 这里就涉及如下链表操作的两种方式: * **直接使用原来的链表来进行删除操作。** -* **设置一个虚拟头结点在进行删除操作。** +* **设置一个虚拟头结点再进行删除操作。** 来看第一种操作:直接使用原来的链表来进行移除。