Skip to content

Commit b5a79d7

Browse files
committed
Linked List: Add documentation and simplify code
1 parent 57e81f6 commit b5a79d7

File tree

2 files changed

+64
-11
lines changed

2 files changed

+64
-11
lines changed

src/main/java/de/akull/datastructures/linkedlist/LinkedList.java

+61-11
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,52 @@
11
package de.akull.datastructures.linkedlist;
22

3+
/**
4+
* Append
5+
* Prepend
6+
* Insert after
7+
* Insert before
8+
* Remove after
9+
* Remove before
10+
* Remove head
11+
* Remove tail
12+
* Remove node
13+
* Get node at index
14+
*/
315
class LinkedList<T> {
416

517
Node<T> head;
618
Node<T> tail;
719
int size;
820

21+
/**
22+
* Adds new node at the end of the list.
23+
*/
24+
void append(Node<T> n) {
25+
if (head == null) {
26+
head = n;
27+
} else {
28+
tail.next = n;
29+
}
30+
tail = n;
31+
size++;
32+
}
33+
34+
/**
35+
* Adds new node at the start of the list.
36+
*/
937
void prepend(Node<T> n) {
1038
n.next = head;
1139
head = n;
1240

1341
if (tail == null) {
14-
tail = head;
15-
}
16-
size++;
17-
}
18-
19-
void append(Node<T> n) {
20-
if (head == null) {
21-
prepend(n);
22-
} else {
23-
tail.next = n;
2442
tail = n;
25-
size++;
2643
}
44+
size++;
2745
}
2846

47+
/**
48+
* Adds a new node after a specific one.
49+
*/
2950
void insertAfter(Node<T> node, Node<T> newNode) {
3051
if (node.equals(tail)) {
3152
tail = newNode;
@@ -35,6 +56,14 @@ void insertAfter(Node<T> node, Node<T> newNode) {
3556
size++;
3657
}
3758

59+
/**
60+
* Adds a new node before a specific one.
61+
*/
62+
void insertBefore(Node<T> node, Node<T> newNode) {}
63+
64+
/**
65+
* Deletes node after a specific one.
66+
*/
3867
void removeAfter(Node<T> n) {
3968
if (n.next != null) {
4069
if (n.next.equals(tail)) {
@@ -45,6 +74,14 @@ void removeAfter(Node<T> n) {
4574
}
4675
}
4776

77+
/**
78+
* Deletes node before a specific one.
79+
*/
80+
void removeBefore(Node<T> n) {}
81+
82+
/**
83+
* Deletes the current head.
84+
*/
4885
void removeHead() {
4986
if (head != null) {
5087
head = head.next;
@@ -56,6 +93,19 @@ void removeHead() {
5693
}
5794
}
5895

96+
/**
97+
* Deletes the current tail.
98+
*/
99+
void removeTail() {}
100+
101+
/**
102+
* Deletes a specific node.
103+
*/
104+
void remove(Node<T> n) {}
105+
106+
/**
107+
* Returns a node at a specific position.
108+
*/
59109
Node<T> get(int index) {
60110
if (index > size - 1) {
61111
return null;

src/main/java/de/akull/datastructures/linkedlist/Node.java

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
package de.akull.datastructures.linkedlist;
22

3+
/**
4+
* A node is a sequential link in a list of nodes and holds some data.
5+
*/
36
class Node<T> {
47

58
Node<T> next;

0 commit comments

Comments
 (0)