Skip to content

Commit d03da87

Browse files
committed
添加 CarrieOn 作者链接,删除对应中文图片文件夹
1 parent c0e3022 commit d03da87

File tree

10 files changed

+5
-3
lines changed

10 files changed

+5
-3
lines changed

data_structure/reverse_part_of_a_linked_list_via_recursion.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Reverse Part of a Linked List via Recusion
22

3+
**Author: [labuladong](https://github.com/labuladong)**
4+
5+
**Translator: [CarrieOn](https://github.com/CarrieOn)**
6+
37
It's easy to reverse a single linked list using iteration, however it's kind of difficult to come up with a recursive solution. Furthermore, if only part of a linked list needs reversed, can you nail it with **recursion**?
48

59
If you haven't known how to **recursively reverse a single linked list**, no worry, we will start right here and guide you step by step to a deeper level.
@@ -182,6 +186,4 @@ Compared to iteration, it is a little bit difficult to understand recursion, the
182186

183187
For time complexity, iteration is O(1) while recursion is always O(N). For space complexity, iteration needs O(N) while recursion needs stack. Overall, iteration has a better performance. Solutions in this article provides you a good way to learn recursion.
184188

185-
**Mission**: Stick to original high quality articles, and make algorithms easy to understand. Welcome to subscribe my Wechat public account `ID:labuladong` for latest articles.
186-
187-
![labuladong](../pictures/labuladong.jpg)
189+
**Mission**: Stick to original high quality articles, and make algorithms easy to understand. Welcome to subscribe my Wechat public account `ID:labuladong` for latest articles.

pictures/反转链表/1.jpg

-148 KB
Binary file not shown.

pictures/反转链表/2.jpg

-149 KB
Binary file not shown.

pictures/反转链表/3.jpg

-150 KB
Binary file not shown.

pictures/反转链表/4.jpg

-161 KB
Binary file not shown.

pictures/反转链表/5.jpg

-157 KB
Binary file not shown.

pictures/反转链表/6.jpg

-177 KB
Binary file not shown.

pictures/反转链表/7.jpg

-156 KB
Binary file not shown.

pictures/反转链表/title.png

-27.8 KB
Binary file not shown.

pictures/子集/.DS_Store

-6 KB
Binary file not shown.

0 commit comments

Comments
 (0)