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