forked from mehul-1607/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_92.java
40 lines (34 loc) · 1.45 KB
/
_92.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
package com.fishercoder.solutions;
import com.fishercoder.common.classes.ListNode;
public class _92 {
public static class Solution1 {
/**
* credit: https://discuss.leetcode.com/topic/8976/simple-java-solution-with-clear-explanation
*/
public ListNode reverseBetween(ListNode head, int m, int n) {
// use four nodes, pre, start, then, dummy
// just reverse the nodes along the way
ListNode dummy = new ListNode(-1);
dummy.next = head;
ListNode pre = dummy;
for (int i = 0; i < m - 1; i++) {
pre = pre.next;
}
ListNode start = pre.next;// start is the node prior to reversing, in the given example,
// start is node with value 1
ListNode then = start.next;// then is the node that we'll start to reverse, in the given
// example, it's 2
for (int i = 0; i < n - m; i++) {
// pay special attention to this for loop, it's assigning then.next to start.next, it
// didn't initialize a new node
// this does exactly what I desired to do, but I just didn't figure out how to implement
// it, thumbs up to the OP!
start.next = then.next;
then.next = pre.next;
pre.next = then;
then = start.next;
}
return dummy.next;
}
}
}