Skip to content

Commit bf446e9

Browse files
committed
Update 01.Linked-List-Basic.md
1 parent 55758ed commit bf446e9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Contents/02.Linked-List/01.Linked-List-Basic/01.Linked-List-Basic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ def removeFront(self):
283283

284284
#### 2.7.2 链表尾部删除元素
285285

286-
链表尾部删除元素的方法也比价简单,具体步骤如下:
286+
链表尾部删除元素的方法也比较简单,具体步骤如下:
287287

288288
- 先使用指针变量 `cur` 沿着 `next` 指针移动到倒数第 `2` 个链节点。
289289
- 然后将此节点的 `next` 指针指向 `None` 即可。

0 commit comments

Comments
 (0)