-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReverseLinkedList.java
More file actions
59 lines (51 loc) · 1.4 KB
/
ReverseLinkedList.java
File metadata and controls
59 lines (51 loc) · 1.4 KB
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
53
54
55
56
57
58
59
/**
* Leetcode problem #206, Reverse Linked List
* https://leetcode.com/problems/reverse-linked-list
*/
public class ReverseLinkedList {
public static void main(String[] args) {
ListNode list = prepareList(new int[] { 1, 2, 3, 4, 5 });
ListNode resList = reverseList(list);
printList(resList);
}
public static ListNode prepareList(int[] arr) {
ListNode currNode = new ListNode();
ListNode head = currNode;
for (int i : arr) {
currNode.next = new ListNode(i);
currNode = currNode.next;
}
return head.next;
}
public static void printList(ListNode list) {
while (list != null) {
System.out.print(list.val);
System.out.print(" ");
list = list.next;
}
System.out.println();
}
public static ListNode reverseList(ListNode head) {
ListNode prevNode = null, tempNode;
while (head != null) {
tempNode = head.next;
head.next = prevNode;
prevNode = head;
head = tempNode;
}
return prevNode;
}
static class ListNode {
int val;
ListNode next;
ListNode() {
}
ListNode(int val) {
this.val = val;
}
ListNode(int val, ListNode next) {
this.val = val;
this.next = next;
}
}
}