leetcode328. Odd Even Linked List

Given the head of a singly linked list, group all the nodes with odd indices together followed by the nodes with even indices, and return the reordered list.

The first node is considered odd, and the second node is even, and so on.

Note that the relative order inside both the even and odd groups should remain as it was in the input.

You must solve the problem in O(1) extra space complexity and O(n) time complexity.

给定单链表的头节点 head ,将所有索引为奇数的节点和索引为偶数的节点分别组合在一起,然后返回重新排序的列表。

第一个节点的索引被认为是 奇数 , 第二个节点的索引为 偶数 ,以此类推。

请注意,偶数组和奇数组内部的相对顺序应该与输入时保持一致。

你必须在 O(1) 的额外空间复杂度和 O(n) 的时间复杂度下解决这个问题。

思路:

如果是空链表,evenList 的初始节点就不存在,因此特殊处理,直接返回;

初始化奇数索引节点链表oddList初始化为头节点,偶数索引节点链表evenList初始化为次节点;

记录偶数索引节点链表头节点 evenList,用于之后的拼接;【奇数索引节点的头节点就是 head,不需要在额外记录了】

更新奇偶索引链表的节点;

最后一个奇数索引节点和首个偶数索引节点拼接起来;

返回头节点 head;

python 复制代码
class Solution:
    def oddEvenList(self, head: Optional[ListNode]) -> Optional[ListNode]:
        if not head: return head   # 空链表,直接返回
        odd_list = head          # 奇数索引节点链表odd_list初始化为头节点
        even_list = head.next    # 偶数索引节点链表even_list初始化为次节点
        even_head = even_list     # 记录偶数索引节点链表头节点
        # 当前偶数节点不为空且当前偶数节点之后还有节点
        while even_list and even_list.next:
            odd_list.next = even_list.next     # 下一个奇数索引节点是当前偶数索引节点的下一个节点
            odd_list = odd_list.next            # 更新当前奇数索引节点
            even_list.next = odd_list.next     # 下一个偶数索引节点是新的奇数索引节点的下一个节点
            even_list = even_list.next          # 更新偶数索引节点
        odd_list.next = even_head   # 最后一个奇数索引节点和首个偶数索引节点拼接起来
        return head
相关推荐
混迹网络的权某6 分钟前
蓝桥杯真题——乐乐的序列和(C语言)
c语言·算法·蓝桥杯
wheeldown9 分钟前
【数据结构】快速排序
c语言·数据结构·算法·排序算法
passer__jw76718 分钟前
【LeetCode】【算法】739. 每日温度
算法·leetcode
aqua353574235821 分钟前
杨辉三角——c语言
java·c语言·数据结构·算法·蓝桥杯
Aurora_th26 分钟前
蓝桥杯 Python组-神奇闹钟(datetime库)
python·算法·职场和发展·蓝桥杯·datetime
iiFrankie28 分钟前
【双指针】【数之和】 LeetCode 633.平方数之和
算法
新手小白勇闯新世界1 小时前
论文阅读- --DeepI2P:通过深度分类进行图像到点云配准
论文阅读·深度学习·算法·计算机视觉
武子康2 小时前
大数据-207 数据挖掘 机器学习理论 - 多重共线性 矩阵满秩 线性回归算法
大数据·人工智能·算法·决策树·机器学习·矩阵·数据挖掘
小邓的技术笔记2 小时前
20241106,LeetCode 每日一题,用 Go 实现整数回文数判断
算法·leetcode·golang
IronmanJay2 小时前
【LeetCode每日一题】——802.找到最终的安全状态
数据结构·算法·leetcode··拓扑排序·802.找到最终的安全状态·反向图