当前位置:   article > 正文

LeetCode-25. K 个一组翻转链表 -- Python解_链表中的节点每k个一组翻转 python

链表中的节点每k个一组翻转 python

原题描述

给你链表的头节点 head ,每 k 个节点一组进行翻转,请你返回修改后的链表。

k 是一个正整数,它的值小于或等于链表的长度。如果节点总数不是 k 的整数倍,那么请将最后剩余的节点保持原有顺序。

你不能只是单纯的改变节点内部的值,而是需要实际进行节点交换。

示例 1:

在这里插入图片描述

输入:head = [1,2,3,4,5], k = 2
输出:[2,1,4,3,5]
  • 1
  • 2

示例 2:
在这里插入图片描述

输入:head = [1,2,3,4,5], k = 3
输出:[3,2,1,4,5]
  • 1
  • 2

提示:
链表中的节点数目为 n
1 <= k <= n <= 5000
0 <= Node.val <= 1000

来源:力扣(LeetCode
链接:https://leetcode-cn.com/problems/reverse-nodes-in-k-group
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

题解

class Solution:
    def reverseKGroup(self, head: Optional[ListNode], k: int) -> Optional[ListNode]:
        tmp_head = ListNode(-1)
        tmp_head.next = head
        pre = tmp_head
        while head:
            tail = pre
            for i in range(k):
                tail = tail.next
                if not tail:
                    return tmp_head.next

            next_node = tail.next
            head,tail = self.revers(head, tail)
            pre.next = head
            tail.next = next_node
            pre = tail
            head = next_node

        return tmp_head.next

    def revers(self,head:ListNode,tail:ListNode):
        pre = tail.next
        tmp_head = head
        while pre != tail:
            next_node = tmp_head.next
            tmp_head.next = pre
            pre = tmp_head
            tmp_head = next_node
        return tail,head
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/86929
推荐阅读
相关标签
  

闽ICP备14008679号