Reverse Nodes in k-Group
Try to solve the Reverse Nodes in k-Group problem.
We'll cover the following
Statement
The task is to reverse the nodes in groups of in a given linked list, where is a positive integer, and at most the length of the linked list. If any remaining nodes are not part of a group of , they should remain in their original order.
It is not allowed to change the values of the nodes in the linked list. Only the order of the nodes can be modified.
Note: Use only extra memory space.
Constraints:
Let n
be the number of nodes in a linked list.
-
k
n
-
Node.value
Examples
Create a free account to view this lesson.
By signing up, you agree to Educative's Terms of Service and Privacy Policy