mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
20 lines
220 B
Java
20 lines
220 B
Java
public class SinglyLinkedList {
|
|
|
|
Node head;
|
|
|
|
public void append(int number) {
|
|
|
|
}
|
|
|
|
public void remove(int number) {
|
|
|
|
}
|
|
|
|
public int find(int number) {
|
|
|
|
}
|
|
|
|
public void printList() {
|
|
|
|
}
|
|
}
|