Linked lists
Import alias 'ads-js/lists'
Linear data structures in which elements are linked using pointers.
Table of contents
SinglyLinkedList - positional linked list with elements linked in one direction from head to tail.
DoublyLinkedList - positional linked list with elements linked in both directions from head to tail and vice versa.
CircularlyLinkedList - positional linked list with elements linked in one direction from head to tail and tail linked to head.
Last updated
Was this helpful?