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, only nodes itself may be 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
1. Recursive solution (my own method)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Definition for singly-linked list. | |
* struct ListNode { | |
* int val; | |
* ListNode *next; | |
* ListNode(int x) : val(x), next(NULL) {} | |
* }; | |
*/ | |
class Solution { | |
public: | |
ListNode* reverseKGroup(ListNode* head, int k) { | |
if(head==NULL||k==1) return head; | |
ListNode* p0=head; | |
ListNode* p1=head; | |
int steps=1; | |
while(steps!=k&&p1!=NULL){ | |
p1=p1->next; | |
steps++; | |
} | |
if(steps!=k||p1==NULL) | |
return head; | |
ListNode* nextHead=p1->next; | |
ListNode* p01=p0->next; | |
ListNode* p011; | |
while(p0!=p1){ | |
p011=p01->next; | |
p01->next=p0; | |
p0=p01; | |
p01=p011; | |
} | |
head->next=reverseKGroup(nextHead, k); | |
return p1; | |
} | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Definition for singly-linked list. | |
* struct ListNode { | |
* int val; | |
* ListNode *next; | |
* ListNode(int x) : val(x), next(NULL) {} | |
* }; | |
*/ | |
class Solution { | |
public: | |
ListNode* reverseKGroup(ListNode* head, int k) { | |
if(head==NULL||k==1) return head; | |
ListNode* p0=head; | |
ListNode* p1=head; | |
int steps=1; | |
while(steps!=k&&p1!=NULL){ | |
p1=p1->next; | |
steps++; | |
} | |
if(steps!=k||p1==NULL) | |
return head; | |
ListNode* nextHead=p1->next; | |
ListNode* p01=p0->next; | |
ListNode* p011; | |
while(p0!=p1){ | |
p011=p01->next; | |
p01->next=p0; | |
p0=p01; | |
p01=p011; | |
} | |
head->next=reverseKGroup(nextHead, k); | |
return p1; | |
} | |
}; |
This solution is from discuss forum of LeetCode. Author's original post is at:
-1 -> 1 -> 2 -> 3 -> 4 -> 5
| | | |
pre cur nex tmp
-1 -> 2 -> 1 -> 3 -> 4 -> 5
| | | |
pre cur nex tmp
-1 -> 3 -> 2 -> 1 -> 4 -> 5
| | | |
pre cur nex tmp
Above is how it works inside one group iteration(for example, k=3)
class Solution {
public:
ListNode *reverseKGroup(ListNode *head, int k) {
if(head==NULL||k==1) return head;
int num=0;
ListNode *preheader = new ListNode(-1);
preheader->next = head;
ListNode *cur = preheader, *nex, *tmp, *pre = preheader;
while(cur = cur->next)
num++;
while(num>=k) {
cur = pre->next;
nex = cur->next;
for(int i=1;inext;
nex->next = pre->next;
pre->next = nex;
cur->next = tmp;
nex = tmp;
}
pre = cur;
num-=k;
}
return preheader->next;
}
};
Thanks to ciaoliang1992, the tmp pointer is no necessary, so the more concise solution is
class Solution {
public:
ListNode *reverseKGroup(ListNode *head, int k) {
if(head==NULL||k==1) return head;
int num=0;
ListNode *preheader = new ListNode(-1);
preheader->next = head;
ListNode *cur = preheader, *nex, *pre = preheader;
while(cur = cur->next)
num++;
while(num>=k) {
cur = pre->next;
nex = cur->next;
for(int i=1;inext=nex->next;
nex->next=pre->next;
pre->next=nex;
nex=cur->next;
}
pre = cur;
num-=k;
}
return preheader->next;
}
};