Reverse Linked List II
Understand how to reverse the nodes between two positions in a singly linked list. This lesson helps you master in-place linked list manipulation by practicing efficient node reordering. You will gain skills to apply this pattern in coding interviews and solve related problems confidently.
We'll cover the following...
Statement
Given a singly linked list with nodes and two positions, left and right, the objective is to reverse the nodes of the list from left to right. Return the modified list.
Constraints:
-
n -
node.val -
leftrightn
Examples
Understand the problem
Let’s take a moment to make sure you’ve correctly understood the problem. The quiz below helps you check if you’re solving the correct problem:
Reverse Linked List II
What is the output if the following linked list and left and right values are given as input?
linked list = 8 → 0 → 6 → 1 → 0 → 7 → 8 → 2
left = 1, right = 5
2 → 8 → 7 → 0 → 1 → 6 → 0 → 8
8 → 0 → 6 → 2 → 8 → 7 → 0 → 1
0 → 1 → 6 → 0 → 8 → 7 → 8 → 2
0 → 8 → 6 → 1 → 0 → 7 → 8 → 2
Figure it out!
We have a game for you to play. Rearrange the logical building blocks to develop a clearer understanding of how to solve this problem.
Try it yourself
Implement your solution in the following coding playground.
// Definition for a Linked List node// class ListNode {// int val;// ListNode next;// // Constructor// public ListNode(int val) {// this.val = val;// this.next = null;// }// }import ds_v1.LinkedList.ListNode;import java.util.*;public class Solution{public static ListNode reverseBetween(ListNode head, int left, int right){// Replace this placeholder return statement with your codereturn head;}}