Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132939 views
License: OTHER
1
public class SinglyLinkedList<E> {
2
private Node<E> head;
3
4
public void add(E object) {
5
Node<E> newNode = new Node<E>(object);
6
newNode.setNext(head);
7
head = newNode;
8
}
9
}
10
11