We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dab6def commit 9300a4eCopy full SHA for 9300a4e
DataStructures/Lists/CursorLinkedList.java
@@ -2,6 +2,13 @@
2
3
import java.util.Objects;
4
5
+/**
6
+ * This class implements a Cursor Linked List.
7
+ *
8
+ * A CursorLinkedList is an array version of a Linked List. Essentially you have an array of list nodes but instead of
9
+ * each node containing a pointer to the next item in the linked list, each node element in the array contains the index for the next node element.
10
11
+ */
12
public class CursorLinkedList<T> {
13
14
private static class Node<T> {
0 commit comments