-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSolution.java
93 lines (68 loc) · 2.07 KB
/
Solution.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import java.util.*;
class Solution {
static class MyLinkedList {
private Node head = null;
private class Node {
private Node next = null;
private int value;
Node(int value) {
this.value = value;
}
public void setNext(Node next) {
this.next = next;
}
public Node getNext() {
return next;
}
}
public MyLinkedList add(int value) {
Node node = new Node(value);
return add(node);
}
public MyLinkedList add(Node node) {
if (head == null) {
setHead(node);
return this;
}
Node current = head;
while (current.next != null)
current = current.getNext();
current.setNext(node);
return this;
}
public void setHead(Node head) {
this.head = head;
}
public Node getHead() {
return head;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
Node current = head;
while (current.next != null) {
sb.append(current.value).append(",");
current = current.getNext();
}
return sb.append(current.value).toString();
}
}
private static void reverse(MyLinkedList list) {
MyLinkedList.Node previous = null;
MyLinkedList.Node current = list.getHead();
while(current != null){
MyLinkedList.Node remainingList = current.getNext();
current.setNext(previous);
previous = current;
current = remainingList;
}
list.setHead(previous);
}
public static void main(String[] args) {
MyLinkedList list = new MyLinkedList();
list.add(1).add(2).add(3).add(4).add(5);
System.out.println(list);
reverse(list);
System.out.println(list);
}
}