KoneArrayFixedCapacityList
Represents a list that is laid out consecutively on a prefix of array of fixed capacity.
Implementation details
This implementation holds a KoneMutableArray of provided capacity and proxies all operations straight to its prefix of the provided size. Any getting or setting is operated on corresponding indices of the array. Any addition or removal is operated on corresponding indices of the array moving values with greater indices.
That's why it has perfect access time complexity while having bad mutability time complexity.
Time complexity of operations
Operation | Worst case | Average |
---|---|---|
size | \(\Theta(1)\) | \(\Theta(1)\) |
get | \(\Theta(1)\) | \(\Theta(1)\) |
set | \(\Theta(1)\) | \(\Theta(1)\) |
add | \(\Theta(1)\) | \(\Theta(1)\) |
addAt | \(\Theta(\mathrm{size})\) | \(\Theta(\mathrm{size})\) |
addSeveral | \(\Theta(\mathrm{number})\) | \(\Theta(\mathrm{number})\) |
addSeveralAt | \(\Theta(\mathrm{size} + \mathrm{number})\) | \(\Theta(\mathrm{size} + \mathrm{number})\) |
removeAt | \(\Theta(\mathrm{size})\) | \(\Theta(\mathrm{size})\) |
removeAllThat | \(\Theta(\mathrm{size})\) | \(\Theta(\mathrm{size})\) |
removeAllThatIndexed | \(\Theta(\mathrm{size})\) | \(\Theta(\mathrm{size})\) |
removeAll | \(\Theta(\mathrm{size})\) | \(\Theta(\mathrm{size})\) |
iterator | \(\Theta(1)\) | \(\Theta(1)\) |
iteratorFrom | \(\Theta(1)\) | \(\Theta(1)\) |
iterator.hasNext | \(\Theta(1)\) | \(\Theta(1)\) |
iterator.hasPrevious | \(\Theta(1)\) | \(\Theta(1)\) |
iterator.getNext | \(\Theta(1)\) | \(\Theta(1)\) |
iterator.getPrevious | \(\Theta(1)\) | \(\Theta(1)\) |
iterator.moveNext | \(\Theta(1)\) | \(\Theta(1)\) |
iterator.movePrevious | \(\Theta(1)\) | \(\Theta(1)\) |
iterator.setNext | \(\Theta(1)\) | \(\Theta(1)\) |
iterator.setPrevious | \(\Theta(1)\) | \(\Theta(1)\) |
iterator.addNext | \(\Theta(\mathrm{size})\) | \(\Theta(\mathrm{size})\) |
iterator.addPrevious | \(\Theta(\mathrm{size})\) | \(\Theta(\mathrm{size})\) |
iterator.removeNext | \(\Theta(\mathrm{size})\) | \(\Theta(\mathrm{size})\) |
iterator.removePrevious | \(\Theta(\mathrm{size})\) | \(\Theta(\mathrm{size})\) |
iterator.nextIndex | \(\Theta(1)\) | \(\Theta(1)\) |
iterator.previousIndex | \(\Theta(1)\) | \(\Theta(1)\) |
Functions
Adds provided elements at the end of the ordered collection.
Checks if the iterable is not empty.
Initiates a mutable iterator over the collection's elements with pointer before the first element.
Initiates a mutable iterator over the collection's elements with pointer between elements with indices index - 1
and index
correspondingly.
Removes elements that satisfy the provided predicate.
Removes elements that satisfy the provided predicate.
Iterates over the collection and retains only the elements matching the predicate.
Iterates over the collection and retains only the elements matching the predicate.