-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathReverseLinkedList2.java
52 lines (47 loc) · 1.19 KB
/
ReverseLinkedList2.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*https://leetcode.com/problems/reverse-linked-list-ii/*/
class Solution {
public ListNode reverseBetween(ListNode head, int l, int r) {
//edge cases
if (head.next == null && l == 1 && r == 1)
return head;
if (l == r)
return head;
ListNode prev = head, curr = head, newList = head;
ListNode left = head, right = head, leftToList = head;
int loop = r-l;
//set left pointer
while (l > 1)
{
leftToList = left;
left = left.next;
--l;
right = right.next;
--r;
}
//set right pointer
while (r > 1)
{
right = right.next;
--r;
}
//standard reverse process
prev = left;
curr = left;
newList = left.next;
while (loop > 0)
{
curr = newList;
newList = curr.next;
curr.next = prev;
prev = curr;
--loop;
}
//set the pointers
left.next = newList;
if (left == head)
head = right;
else
leftToList.next = right;
return head;
}
}