mirror of
https://github.com/chefyuan/algorithm-base.git
synced 2025-08-02 05:51:34 +00:00
chefyuan
This commit is contained in:
58
animation-simulation/链表篇/leetcode141环形链表.md
Normal file
58
animation-simulation/链表篇/leetcode141环形链表.md
Normal file
@@ -0,0 +1,58 @@
|
||||
> 如果阅读时,发现错误,或者动画不可以显示的问题可以添加我微信好友 **[tan45du_one](https://raw.githubusercontent.com/tan45du/tan45du.github.io/master/个人微信.15egrcgqd94w.jpg)** ,备注 github + 题目 + 问题 向我反馈
|
||||
>
|
||||
> 感谢支持,该仓库会一直维护,希望对各位有一丢丢帮助。
|
||||
>
|
||||
> 另外希望手机阅读的同学可以来我的 <u>[**公众号:袁厨的算法小屋**](https://raw.githubusercontent.com/tan45du/test/master/微信图片_20210320152235.2pthdebvh1c0.png)</u> 两个平台同步,想要和题友一起刷题,互相监督的同学,可以在我的小屋点击<u>[**刷题小队**](https://raw.githubusercontent.com/tan45du/test/master/微信图片_20210320152235.2pthdebvh1c0.png)</u>进入。
|
||||
|
||||
### [141. 环形链表](https://leetcode-cn.com/problems/linked-list-cycle/)
|
||||
|
||||
下面我们再来了解一种双指针,我们称之为快慢指针,顾名思义一个指针速度快,一个指针速度慢。
|
||||
|
||||
#### 题目描述
|
||||
|
||||
> 给定一个链表,判断链表中是否有环。pos代表环的入口,若为-1,则代表无环
|
||||
>
|
||||
> 如果链表中存在环,则返回 true 。 否则,返回 false 。
|
||||
|
||||
示例1:
|
||||
|
||||

|
||||
|
||||
> 输入:head = [3,2,0,-4], pos = 1
|
||||
> 输出:true
|
||||
> 解释:链表中有一个环,其尾部连接到第二个节点。
|
||||
|
||||
#### 题目解析
|
||||
|
||||
题目很容易理解,让我们判断链表中是否有环,我们只需通过我们的快慢指针即可,我们试想一下,如果链表中有环的话,一个速度快的指针和一个速度慢的指针在环中运动的话,若干圈后快指针肯定可以追上慢指针的。这是一定的。
|
||||
|
||||

|
||||
|
||||
好啦,做题思路已经有了,让我们一起看一下代码的执行过程吧。\
|
||||
|
||||
**动画模拟**
|
||||
|
||||

|
||||
|
||||
|
||||
|
||||
**题目代码**
|
||||
|
||||
```java
|
||||
public class Solution {
|
||||
public boolean hasCycle(ListNode head) {
|
||||
|
||||
ListNode fast = head;
|
||||
ListNode low = head;
|
||||
while (fast != null && fast.next != null) {
|
||||
fast = fast.next.next;
|
||||
low = low.next;
|
||||
if (fast == low) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
```
|
||||
|
62
animation-simulation/链表篇/leetcode328奇偶链表.md
Normal file
62
animation-simulation/链表篇/leetcode328奇偶链表.md
Normal file
@@ -0,0 +1,62 @@
|
||||
> 如果阅读时,发现错误,或者动画不可以显示的问题可以添加我微信好友 **[tan45du_one](https://raw.githubusercontent.com/tan45du/tan45du.github.io/master/个人微信.15egrcgqd94w.jpg)** ,备注 github + 题目 + 问题 向我反馈
|
||||
>
|
||||
> 感谢支持,该仓库会一直维护,希望对各位有一丢丢帮助。
|
||||
>
|
||||
> 另外希望手机阅读的同学可以来我的 <u>[**公众号:袁厨的算法小屋**](https://raw.githubusercontent.com/tan45du/test/master/微信图片_20210320152235.2pthdebvh1c0.png)</u> 两个平台同步,想要和题友一起刷题,互相监督的同学,可以在我的小屋点击<u>[**刷题小队**](https://raw.githubusercontent.com/tan45du/test/master/微信图片_20210320152235.2pthdebvh1c0.png)</u>进入。
|
||||
|
||||
### [328. 奇偶链表](https://leetcode-cn.com/problems/odd-even-linked-list/)
|
||||
|
||||
下面我们再来看一种双指针,我称之为交替领先双指针,起名鬼才哈哈。下面我们一起来看看吧。
|
||||
|
||||
#### 题目描述
|
||||
|
||||
> 给定一个单链表,把所有的奇数节点和偶数节点分别排在一起。请注意,这里的奇数节点和偶数节点指的是节点编号的奇偶性,而不是节点的值的奇偶性。
|
||||
>
|
||||
> 请尝试使用原地算法完成。你的算法的空间复杂度应为 O(1),时间复杂度应为 O(nodes),nodes 为节点总数。
|
||||
|
||||
示例 1:
|
||||
|
||||
> 输入: 1->2->3->4->5->NULL
|
||||
> 输出: 1->3->5->2->4->NULL
|
||||
|
||||
示例 2:
|
||||
|
||||
> 输入: 2->1->3->5->6->4->7->NULL
|
||||
> 输出: 2->3->6->7->1->5->4->NULL
|
||||
|
||||
#### 题目解析
|
||||
|
||||
题目也很容易理解就是让我们将原来奇数位的结点放一起,偶数位的结点放一起。这里需要注意,和结点值无关,是奇数位和偶数位结点。
|
||||
|
||||
我们可以先将奇数位和在一起,再将偶数位和在一起,最后再将两个链表合并很简单,我们直接看动画模拟吧。
|
||||
|
||||
#### **动画模拟**
|
||||
|
||||

|
||||
|
||||
#### 题目代码
|
||||
|
||||
```java
|
||||
class Solution {
|
||||
public ListNode oddEvenList(ListNode head) {
|
||||
if (head == null || head.next == null) {
|
||||
return head;
|
||||
}
|
||||
ListNode odd = head;
|
||||
ListNode even = head.next;
|
||||
ListNode evenhead = even;
|
||||
|
||||
while (odd.next != null && even.next != null) {
|
||||
//将偶数位合在一起,奇数位合在一起
|
||||
odd.next = even.next;
|
||||
odd = odd.next;
|
||||
even.next = odd.next;
|
||||
even = even.next;
|
||||
}
|
||||
//链接
|
||||
odd.next = evenhead;
|
||||
return head;
|
||||
}
|
||||
}
|
||||
```
|
||||
|
Reference in New Issue
Block a user