diff --git a/animation-simulation/链表篇/leetcode92反转链表2.md b/animation-simulation/链表篇/leetcode92反转链表2.md index 8338238..23f7676 100644 --- a/animation-simulation/链表篇/leetcode92反转链表2.md +++ b/animation-simulation/链表篇/leetcode92反转链表2.md @@ -30,7 +30,7 @@ 我们主要通过两部分来解决,先截取需要翻转的部分,然后再头尾交换即可。下面我们通过一个动画来看看具体步骤。 -![](https://img-blog.csdnimg.cn/20210326195356437.gif) +![在这里插入图片描述](https://img-blog.csdnimg.cn/20210327163804112.gif) 是不是很容易理解,下面我们来看代码吧。