From 9300a4e0f81c715c9d4f047b8fee9fca0976154a Mon Sep 17 00:00:00 2001 From: aayushi-kunwar13 <51057675+aayushi-kunwar13@users.noreply.github.com> Date: Fri, 8 Oct 2021 22:08:08 +0530 Subject: [PATCH] Add what is Cursor Linked List (#2407) --- DataStructures/Lists/CursorLinkedList.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/DataStructures/Lists/CursorLinkedList.java b/DataStructures/Lists/CursorLinkedList.java index aa9a1aeea..5eedb91cb 100644 --- a/DataStructures/Lists/CursorLinkedList.java +++ b/DataStructures/Lists/CursorLinkedList.java @@ -2,6 +2,13 @@ package DataStructures.Lists; import java.util.Objects; +/** + * This class implements a Cursor Linked List. + * + * A CursorLinkedList is an array version of a Linked List. Essentially you have an array of list nodes but instead of + * 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. + * + */ public class CursorLinkedList { private static class Node {