Skip to content

Commit

Permalink
Update 01.Linked-List-Basic.md
Browse files Browse the repository at this point in the history
  • Loading branch information
itcharge committed Jan 10, 2022
1 parent 55758ed commit bf446e9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ def removeFront(self):

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

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

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

0 comments on commit bf446e9

Please sign in to comment.