328. Odd Even Linked List
难度: Medium
刷题内容
原题连接
- 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 ```
解题方案
思路 1
如题
ListNode* oddEvenList(ListNode* head) {
if(head==NULL || head->next==NULL)
return head;
ListNode* link = head->next;
ListNode* slow=head;
ListNode* fast=head->next;
while(fast&&fast->next){
slow->next = fast->next;
fast->next = fast->next->next;
slow=slow->next;
fast=fast->next;
}
cout<<slow->val<<endl;
slow->next = link;
return head;
}