forked from imarvinle/CSGuide
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
|
||
## 解题思路 | ||
|
||
### 一、 新建节点头插法 | ||
### 一. 新建节点头插法 | ||
|
||
这道题,最容易想到的做法就是从头到尾遍历一遍链表,然后使用**头插法**,不断将后面的元素插入到新链表的头部。 | ||
|
||
|