Reverse a linked list from position m to n. Do it in one-pass.
Note
1 ≤ m ≤ n ≤ length of list.
Example
Input: 1->2->3->4->5->NULL, m = 2, n = 4
Output: 1->4->3->2->5->NULL
Code
1 | public class ListNode { |
1 | public ListNode reverseBetween(ListNode head, int m, int n) { |