g0001_0100.s0025_reverse_nodes_in_k_group.Solution.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-kotlin Show documentation
Show all versions of leetcode-in-kotlin Show documentation
Kotlin-based LeetCode algorithm problem solutions, regularly updated
package g0001_0100.s0025_reverse_nodes_in_k_group
// #Hard #Top_100_Liked_Questions #Linked_List #Recursion #Data_Structure_II_Day_13_Linked_List
// #Udemy_Linked_List #2022_04_26_Time_194_ms_(87.72%)_Space_35.7_MB_(100.00%)
import com_github_leetcode.ListNode
class Solution {
fun reverseKGroup(head: ListNode?, k: Int): ListNode? {
if (head?.next == null || k == 1) {
return head
}
var j = 0
var len = head
// loop for checking the length of the linklist, if the linklist is less than k, then return
// as it is.
while (j < k) {
if (len == null) {
return head
}
len = len.next
j++
}
// Reverse linked list logic applied here.
var c = head
var n: ListNode? = null
var prev: ListNode? = null
var i = 0
// Traverse the while loop for K times to reverse the node in K groups.
while (i != k) {
n = c!!.next
c.next = prev
prev = c
c = n
i++
}
// C1 is pointing to 1st node of K group, which is now going to point to the next K group
// linklist.
// recursion, for futher remaining linked list.
head.next = reverseKGroup(n, k)
return prev
}
}