-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLinkedList.java
150 lines (110 loc) · 2.77 KB
/
LinkedList.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
package DataStructures;
public class LinkedList {
private class Node {
private int value;
private Node next;
public Node(int value) {
this.value = value;
}
}
private Node first;
private Node last;
private int size = 0;
public void addFirst(int value) {
Node currentNode = first;
first = new Node(value);
first.next = currentNode;
if (last == null) {
last = first;
}
size++;
}
public void addLast(int value) {
if (first == null) {
last = new Node(value);
first = last;
} else {
last.next = new Node(value);
last = last.next;
}
size++;
}
public int indexOf(int value) {
return indexOf(first, value);
}
int index = 0;
public int indexOf(Node node, int value) {
if (node.value == value) {
return index;
} else if (node.next == null) {
return -1;
}
index++;
return indexOf(node.next, value);
}
public boolean contains(int value) {
if (indexOf(value) > -1) {
return true;
}
return false;
}
public void deleteFirst() {
first = first.next;
}
public void deleteLast() {
deleteLast(first);
size--;
}
public Node deleteLast(Node node) {
if (node.next.next == null) {
return node;
}
last = deleteLast(node.next);
last.next = null;
return last;
}
public int size() {
return size;
}
public int[] toArray() {
int[] array = new int[size];
int index = 0;
return toArray(first, array, index);
}
public int[] toArray(Node node, int[] array, int index) {
if (node == null) {
return array; // 0 -1, 1 - 2, 2 - 3, 3 - 4
}
array[index++] = node.value;
toArray(node.next, array, index);
return array;
}
public void reverse() {
// Node previous = first;
Node newFirst = reverse(first.next, first);
last = first;
last.next = null;
first = newFirst;
}
public Node reverse(Node node, Node previous) {
if (node == null) {
return previous;
}
Node current = node.next;
node.next = previous;
previous = node;
return reverse(current, previous);
}
public int getKthFromEnd(int k) {
Node slow = first;
Node fast = first;
for (int i = 1; i < k; i++) {
fast = fast.next;
}
while (fast != last) {
slow = slow.next;
fast = fast.next;
}
return slow.value;
}
}