Skip to content

Commit e137deb

Browse files
author
Justin Wetherell
committed
Added javadoc for singly linked list
1 parent 210e1b5 commit e137deb

File tree

1 file changed

+8
-0
lines changed
  • src/com/jwetherell/algorithms/data_structures

1 file changed

+8
-0
lines changed

src/com/jwetherell/algorithms/data_structures/List.java

+8
Original file line numberDiff line numberDiff line change
@@ -473,6 +473,14 @@ public String toString() {
473473
}
474474
}
475475

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+
*/
476484
public static class JavaCompatibleSinglyLinkedList<T> extends java.util.AbstractSequentialList<T> {
477485

478486
private List.SinglyLinkedList<T> list = null;

0 commit comments

Comments
 (0)