Algorithms
Reverse a Linked List in groups of a given size
Basics In the previous post, we talked about reverse the entire LinkedList. You also can get info about what is it LinkedList and a high-level view of how it works. Here is the link: https://www.hrupin.com/2020/12/reverse-a-linked-list-in-groups-of-given-size-algorithm Today we will talk about a case when we need to revert linked list nodes Read more…