Skip to content

Commit 97719c6

Browse files
committed
edit java/SinglyLinkedList.java
1 parent 054809e commit 97719c6

File tree

2 files changed

+161
-2
lines changed

2 files changed

+161
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2109,8 +2109,8 @@ In order to achieve greater coverage and encourage more people to contribute to
21092109
</a>
21102110
</td>
21112111
<td> <!-- Java -->
2112-
<a href="./CONTRIBUTING.md">
2113-
<img align="center" height="25" src="./logos/github.svg" />
2112+
<a href="./src/java/SinglyLinkedList.java">
2113+
<img align="center" height="25" src="./logos/java.svg" />
21142114
</a>
21152115
</td>
21162116
<td> <!-- Python -->

src/java/SinglyLinkedList.java

+159
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,159 @@
1+
import java.util.Objects;
2+
3+
class Node {
4+
int val;
5+
Node next;
6+
7+
Node(int val) {
8+
this.val = val;
9+
this.next = null;
10+
}
11+
12+
Node(int val, Node next) {
13+
this.val = val;
14+
this.next = next;
15+
}
16+
}
17+
18+
public class SinglyLinkedList {
19+
Node head;
20+
21+
public void printList() {
22+
Node aux = head;
23+
System.out.print("[");
24+
while (aux != null) {
25+
System.out.print(aux.val);
26+
if (aux.next != null) {
27+
System.out.print(", ");
28+
}
29+
aux = aux.next;
30+
}
31+
System.out.println("]");
32+
}
33+
34+
public void pushBack(int val) {
35+
Node newNode = new Node(val);
36+
if (head == null) {
37+
head = newNode;
38+
} else {
39+
Node aux = head;
40+
while (aux.next != null) {
41+
aux = aux.next;
42+
}
43+
aux.next = newNode;
44+
}
45+
}
46+
47+
public void pushFront(int val) {
48+
Node newNode = new Node(val, head);
49+
head = newNode;
50+
}
51+
52+
public void insertInPosition(int val, int pos) {
53+
if (pos == 0) {
54+
pushFront(val);
55+
return;
56+
}
57+
Node newNode = new Node(val);
58+
Node prev = head;
59+
Node curr = head;
60+
61+
while (curr != null && pos > 0) {
62+
prev = curr;
63+
curr = curr.next;
64+
pos--;
65+
}
66+
67+
prev.next = newNode;
68+
newNode.next = curr;
69+
}
70+
71+
public void popBack() {
72+
if (head == null) {
73+
return;
74+
}
75+
76+
if (head.next == null) {
77+
head = null;
78+
return;
79+
}
80+
81+
Node prev = head;
82+
Node curr = head.next;
83+
84+
while (curr.next != null) {
85+
prev = prev.next;
86+
curr = curr.next;
87+
}
88+
89+
prev.next = null;
90+
}
91+
92+
public void popFront() {
93+
if (head == null) {
94+
return;
95+
}
96+
97+
Node aux = head;
98+
head = aux.next;
99+
}
100+
101+
public void removeFromPosition(int pos) {
102+
if (head == null) {
103+
return;
104+
}
105+
106+
if (pos == 0) {
107+
popFront();
108+
return;
109+
}
110+
111+
Node prev = head;
112+
Node curr = head;
113+
114+
while (curr != null && pos > 0) {
115+
prev = curr;
116+
curr = curr.next;
117+
pos--;
118+
}
119+
120+
if (curr != null) {
121+
prev.next = curr.next;
122+
}
123+
}
124+
125+
public static void main(String[] args) {
126+
SinglyLinkedList list = new SinglyLinkedList();
127+
128+
System.out.println("Inserting the elements at the end [1, 2, 3]:");
129+
list.pushBack(1);
130+
list.pushBack(2);
131+
list.pushBack(3);
132+
list.printList();
133+
134+
System.out.println("Inserting the elements at the beginning [0, -1, -2]:");
135+
list.pushFront(0);
136+
list.pushFront(-1);
137+
list.pushFront(-2);
138+
list.printList();
139+
140+
System.out.println("Inserting in positions 3, 4, 5 the elements [997, 998, 999] respectively:");
141+
list.insertInPosition(997, 3);
142+
list.insertInPosition(998, 4);
143+
list.insertInPosition(999, 5);
144+
list.printList();
145+
146+
System.out.println("Removing last element:");
147+
list.popBack();
148+
list.printList();
149+
150+
System.out.println("Removing first element:");
151+
list.popFront();
152+
list.printList();
153+
154+
System.out.println("Removing element in position 2:");
155+
list.removeFromPosition(2);
156+
list.printList();
157+
}
158+
}
159+

0 commit comments

Comments
 (0)