We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 210e1b5 commit e137debCopy full SHA for e137deb
src/com/jwetherell/algorithms/data_structures/List.java
@@ -473,6 +473,14 @@ public String toString() {
473
}
474
475
476
+ /**
477
+ * Linked List (singly link). A linked list is a data structure consisting
478
+ * of a group of nodes which together represent a sequence.
479
+ *
480
+ * http://en.wikipedia.org/wiki/Linked_list
481
482
+ * @author Justin Wetherell <phishman3579@gmail.com>
483
+ */
484
public static class JavaCompatibleSinglyLinkedList<T> extends java.util.AbstractSequentialList<T> {
485
486
private List.SinglyLinkedList<T> list = null;
0 commit comments