-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpartialRev.java
43 lines (30 loc) · 1.05 KB
/
partialRev.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
import Parents.ListNode;
public class partialRev {
public static void main(String[] args) {
int left = 2, right = 4;
ListNode head = new ListNode(1);
head.next = new ListNode(2);
head.next.next = new ListNode(3);
head.next.next.next = new ListNode(4);
head.next.next.next.next = new ListNode(5);
System.out.println(reverseBetween(head, left, right));
}
public static ListNode reverseBetween(ListNode head, int left, int right) {
ListNode prev = head, curr = head;
for (int i = 1; i < left; i++)
curr = curr.next;
for (int i = 1; i < left - 1; i++)
prev = prev.next;
ListNode start = curr, end = null, ahead = start.next;
for (int i = 0; i < right - left + 1 && ahead != null; i++) {
start.next = end;
end = start;
start = ahead;
ahead = ahead.next;
}
// adjusting the pointers to return ans
prev.next=end;
curr.next=ahead;
return prev;
}
}