algorithm-base/animation-simulation/链表篇/leetcode328奇偶链表.md
2021-05-05 04:13:37 +08:00

108 lines
3.5 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

> 如果阅读时发现错误或者动画不可以显示的问题可以添加我微信好友 **[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
#### 题目解析
题目也很容易理解就是让我们将原来奇数位的结点放一起偶数位的结点放一起这里需要注意和结点值无关是奇数位和偶数位结点
我们可以先将奇数位和在一起再将偶数位和在一起最后再将两个链表合并很简单我们直接看动画模拟吧
#### **动画模拟**
![](https://img-blog.csdnimg.cn/20210321120150255.gif)
#### 题目代码
Java Code:
```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;
}
}
```
C++ Code:
```cpp
class Solution {
public:
ListNode* oddEvenList(ListNode* head) {
if (head == nullptr || head->next == nullptr) {
return head;
}
ListNode * odd = head;
ListNode * even = head->next;
ListNode * evenhead = even;
while (odd->next != nullptr && even->next != nullptr) {
//将偶数位合在一起,奇数位合在一起
odd->next = even->next;
odd = odd->next;
even->next = odd->next;
even = even->next;
}
//链接
odd->next = evenhead;
return head;
}
};
```
JS Code:
```javascript
var oddEvenList = function(head) {
if(!head || !head.next) return head;
let odd = head, even = head.next, evenHead = even;
while(odd.next && even.next){
odd.next = even.next;
odd = odd.next;
even.next = odd.next;
even = even.next;
}
odd.next = evenHead;
return head;
};
```