Function
Static Public Summary | ||
public |
Doubly linked list implementation making use of dummy nodes for the sake of simplicity. |
|
public |
Iterator(front: *, back: *, current: *) |
|
public |
ReverseIterator(front: *, back: *, current: *) |
Static Public
public DoublyLinkedList() source
import DoublyLinkedList from '@list-abstraction/doubly-linked-list/src/DoublyLinkedList.js'
Doubly linked list implementation making use of dummy nodes for the sake of simplicity.
public Iterator(front: *, back: *, current: *) source
import Iterator from '@list-abstraction/doubly-linked-list/src/Iterator.js'
Params:
Name | Type | Attribute | Description |
front | * | ||
back | * | ||
current | * |
public ReverseIterator(front: *, back: *, current: *) source
import ReverseIterator from '@list-abstraction/doubly-linked-list/src/ReverseIterator.js'
Params:
Name | Type | Attribute | Description |
front | * | ||
back | * | ||
current | * |