Reverse Nodes in k-groups leetcode Python

Source: Internet
Author: User

Given A linked list, reverse the nodes of a linked list K at a time and return its modified list.


If the number of nodes is not a multiple of k then left-out nodes in the end should remain as it is.


You may not alter the values in the nodes, and only nodes itself is changed.


Only constant memory is allowed.


For example,
Given this linked list:1->2->3->4->5


For k = 2, you should return:2->1->4->3->5


For k = 3, you should return:3->2->1->4->5



This approach is similar to reverse linklist and reverse pair, and requires a function to reverse.

The title means that every K node flips once, if not enough k to not turn.

# Definition for singly-linked list.# class listnode:# def __init__ (self, x): #  Self.val = x# Self.next = Noneclass Solution: # @param head, a ListNode # @param k, an integer # @return             A ListNode def reverse (self,start,end): Dummy=listnode (0) Dummy.next=start while Dummy.next!=end:        Tmp=start.next Start.next=tmp.next Tmp.next=dummy.next dummy.next=tmp        Return End,start def reversekgroup (self, head, K): If Head==none:return None dummy=listnode (0)                Dummy.next=head Start=dummy while start.next:end=start for I in Range (k-1): End=end.next if End.next==none:return dummy.next newstart,newend=                        Self.reverse (start.next,end.next) Start.next=newstart start=newend return Dummy.next 


Reverse Nodes in k-groups leetcode Python

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.