Creates a singly-linked list, optionally filled with the elements generated by the given iterable.
const l = new DoubleinkedList();
You can also construct a linked list from any iterable, like so:
const l = new DoubleLinkedList([1, 2, 3])
Optional
iterable: Iterable<T, any, any>Count the amount of elements in the collection.
⚠️ In most cases, this should be an O(1)
operation. However, there are
cases where this can be an O(n)
operation. Therefore, it is recommended
to always cache the result in a local variable.
Returns an object which is able to sift through the values in this collection.
The order by which the elements are traversed depends on the kind of collection. For unordered collections, the iteration order is unspecified and may even differ between two iterations on the same collection.
Add an element to the collection. If the element already exists, update its value.
The location where the element is placed depends on the collection type, and in the generic case there is no guarantee on the location where it is inserted.
This method returns a pair with the first element indicating whether the element was added, while the second element refers to the actual location of the element.
Append an item at the end of the collection. The element will be given the highest order.
Return a cursor that is placed at the index given by position
in the
sequence.
Copies all elements in the collection to a new one of the same kind.
Insert an element after the element at the given position. The position is deduced from the iterator that is given to the method.
Insert an element before the element at the given position. The position is deduced from the iterator that is goven to the method.
Prepend an item to the beginning of the collection. The element will be given the lowest order.
Converts the entire collection to a range.
Static
emptyStatic
fromWill create a doubly-linked list filled with the elements generated by the given iterable.
A doubly-linked list, which is sometimes faster than a singly-linked list but consumes a bit more memory.
The following table summarises the time complexity of the most commonly used properties.
See
SingleLinkedList