public class XDoubleLinkedList extends XDoubleCollectionBase implements XDoubleList
This class represents a linked list with real-time behavior; smooth capacity increase and no memory allocation as long as the list size does not exceed its initial capacity.
All of the operations perform as could be expected for a doubly-linked
list (insertion
/deletion
at the end of the list are nonetheless the fastest).
Operations that index into the list will traverse the list from
the begining or the end whichever is closer to the specified index.
Random access operations can be significantly accelerated by
splitting
the list into smaller ones.
XDoubleLinkedList
(as for any XCollection
sub-class) supports
fast iterations without using iterators.[code]
XLinkedList
Alternatively The list can be iterated over using XDoubleCollectionBase.reusableIterator()
. Utilization of
these iterators does not introduce garbage because they are created once. However,
these iterators may not be used concurrently by multiple threads as they are
single instance by nature.
Custom list implementations may override the newNode()
method
in order to return their own XDoubleLinkedList.DoubleNode
implementation (with
additional fields for example).
This class was based on collections code from http://javolution.org, but modified for use outside of realtime jvms.
Modifier and Type | Class and Description |
---|---|
static class |
XDoubleLinkedList.DoubleNode
This class represents a
XDoubleLinkedList node; it allows for direct
iteration over the list values . |
Constructor and Description |
---|
XDoubleLinkedList()
Creates a list of small initial capacity.
|
XDoubleLinkedList(int capacity)
Creates a list of specified initial capacity; unless the list size
reaches the specified capacity, operations on this list will not allocate
memory (no lazy object creation).
|
XDoubleLinkedList(XDoubleCollection values)
Creates a list containing the specified values, in the order they
are returned by the collection's iterator.
|
Modifier and Type | Method and Description |
---|---|
boolean |
add(double value)
Appends the specified value to the end of this list
(equivalent to
addLast(double) ). |
void |
add(int index,
double value)
Inserts the specified value at the specified position in this list.
|
boolean |
addAll(int index,
XDoubleCollection values)
Inserts all of the values in the specified collection into this
list at the specified position.
|
void |
addBefore(XDoubleLinkedList.DoubleNode next,
double value)
Inserts the specified value before the specified Node.
|
void |
addFirst(double value)
Inserts the specified value at the beginning of this list.
|
void |
addLast(double value)
Appends the specified value to the end of this list (fast).
|
void |
clear()
Removes all of the values from this collection (optional operation).
|
boolean |
contains(double value)
Indicates if this collection contains the specified value.
|
void |
delete(XCollection.Record record)
Deletes the specified record from this collection.
|
double |
get(int index)
Returns the value at the specified position in this list.
|
double |
getFirst()
Returns the first value of this list.
|
double |
getLast()
Returns the last value of this list.
|
XDoubleLinkedList.DoubleNode |
head()
Returns the head record of this collection; it is the record such as
head().getNext() holds the first collection value. |
int |
indexOf(double value)
Returns the index in this list of the first occurrence of the specified
value, or -1 if this list does not contain this value.
|
XDoubleIterator |
iterator()
Returns a simple iterator over the elements in this list
|
int |
lastIndexOf(double value)
Returns the index in this list of the last occurrence of the specified
value, or -1 if this list does not contain this value.
|
XDoubleListIterator |
listIterator()
Returns a list iterator over the elements in this list.
|
XDoubleListIterator |
listIterator(int index)
Returns a list iterator from the specified position
The specified index indicates the first value that would be returned by
an initial call to the
next method. |
static XDoubleLinkedList |
newInstance()
Returns a new list instance.
|
double |
remove(int index)
Removes the value at the specified position in this list.
|
double |
removeFirst()
Removes and returns the first value of this list.
|
double |
removeLast()
Removes and returns the last value of this list (fast).
|
void |
reset() |
double |
set(int index,
double value)
Replaces the value at the specified position in this list with the
specified value.
|
int |
size()
Returns the number of values in this collection.
|
XDoubleList |
subList(int fromIndex,
int toIndex)
Returns a view of the portion of this list between the specified
indexes
If the specified indexes are equal, the returned list is empty.
|
XDoubleLinkedList.DoubleNode |
tail()
Returns the tail record of this collection; it is the record such as
tail().getPrevious() holds the last collection value. |
XDoubleList |
unmodifiable()
Returns the unmodifiable view associated to this collection.
|
double |
valueOf(XCollection.Record record)
Returns the collection value for the specified record.
|
addAll, containsAll, equals, hashCode, isEmpty, remove, removeAll, retainAll, reusableIterator, shared, supportsIteratorModifications, toArray, toArray, toString
addAll, containsAll, equals, hashCode, isEmpty, remove, removeAll, retainAll, toArray, toArray
reusableIterator, shared, supportsIteratorModifications
public XDoubleLinkedList()
public XDoubleLinkedList(int capacity)
capacity
- the initial capacity.public XDoubleLinkedList(XDoubleCollection values)
values
- the values to be placed into this list.public static XDoubleLinkedList newInstance()
public final boolean add(double value)
addLast(double)
).add
in interface XDoubleCollection
add
in interface XDoubleList
add
in class XDoubleCollectionBase
value
- the value to be appended to this list.true
(as per the general contract of the
Collection.add
method).public final double get(int index)
get
in interface XDoubleList
index
- the index of value to return.IndexOutOfBoundsException
- if (index < 0) ||
(index >= size())
public final double set(int index, double value)
set
in interface XDoubleList
index
- the index of value to replace.value
- the value to be stored at the specified position.IndexOutOfBoundsException
- if (index < 0) ||
(index >= size())
public final void add(int index, double value)
add
in interface XDoubleList
index
- the index at which the specified value is to be inserted.value
- the value to be inserted.IndexOutOfBoundsException
- if (index < 0) ||
(index > size())
public final boolean addAll(int index, XDoubleCollection values)
addAll
in interface XDoubleList
index
- the index at which to insert first value from the specified
collection.values
- the values to be inserted into this list.true
if this list changed as a result of the call;
false
otherwise.IndexOutOfBoundsException
- if (index < 0) ||
(index > size())
public final double remove(int index)
remove
in interface XDoubleList
index
- the index of the value to removed.IndexOutOfBoundsException
- if (index < 0) ||
(index >= size())
public final int indexOf(double value)
indexOf
in interface XDoubleList
value
- the value to search for.public final int lastIndexOf(double value)
lastIndexOf
in interface XDoubleList
value
- the value to search for.public XDoubleIterator iterator()
iterator
in interface XDoubleCollection
iterator
in interface XDoubleList
iterator
in class XDoubleCollectionBase
public XDoubleListIterator listIterator()
listIterator
in interface XDoubleList
public XDoubleListIterator listIterator(int index)
next
method. An initial call to
the previous
method would return the value with the
specified index minus one.listIterator
in interface XDoubleList
index
- index of first value to be returned from the
list iterator (by a call to the next
method).IndexOutOfBoundsException
- if the index is out of range
[code](index < 0 || index > size())[/code].public final XDoubleList subList(int fromIndex, int toIndex)
list.subList(from, to).clear();
Similar idioms may be constructed for indexOf
and
lastIndexOf
, and all of the algorithms in the
Collections
class can be applied to a subList.
The semantics of the list returned by this method become undefined if
the backing list (i.e., this list) is structurally modified in
any way other than via the returned list (structural modifications are
those that change the size of this list, or otherwise perturb it in such
a fashion that iterations in progress may yield incorrect results).subList
in interface XDoubleList
fromIndex
- low endpoint (inclusive) of the subList.toIndex
- high endpoint (exclusive) of the subList.IndexOutOfBoundsException
- if [code](fromIndex < 0 ||
toIndex > size || fromIndex < toIndex)[/code]public final double getFirst()
NoSuchElementException
- if this list is empty.public final double getLast()
NoSuchElementException
- if this list is empty.public final void addFirst(double value)
value
- the value to be inserted.public void addLast(double value)
value
- the value to be inserted.public final double removeFirst()
NoSuchElementException
- if this list is empty.public final double removeLast()
NoSuchElementException
- if this list is empty.public final void addBefore(XDoubleLinkedList.DoubleNode next, double value)
next
- the Node before which this value is inserted.value
- the value to be inserted.public final XDoubleLinkedList.DoubleNode head()
XDoubleCollectionBase
head().getNext()
holds the first collection value.head
in interface XDoubleCollection
head
in class XDoubleCollectionBase
public final XDoubleLinkedList.DoubleNode tail()
XDoubleCollectionBase
tail().getPrevious()
holds the last collection value.tail
in interface XDoubleCollection
tail
in class XDoubleCollectionBase
public final double valueOf(XCollection.Record record)
XDoubleCollectionBase
valueOf
in interface XDoubleCollection
valueOf
in class XDoubleCollectionBase
record
- the record whose current value is returned.public final void delete(XCollection.Record record)
XDoubleCollectionBase
Implementation must ensure that removing a record from the collection does not affect in any way the records preceding the record being removed (it might affect the next records though, e.g. in a list collection, the indices of the subsequent records will change).
delete
in interface XDoubleCollection
delete
in class XDoubleCollectionBase
record
- the record to be removed.public final boolean contains(double value)
XDoubleCollectionBase
contains
in interface XDoubleCollection
contains
in interface XDoubleList
contains
in class XDoubleCollectionBase
value
- the value whose presence in this collection
is to be tested.true
if this collection contains the specified
value;false
otherwise.public final int size()
XDoubleCollectionBase
size
in interface XDoubleCollection
size
in interface XDoubleList
size
in class XDoubleCollectionBase
public final void clear()
XDoubleCollectionBase
clear
in interface XDoubleCollection
clear
in interface XDoubleList
clear
in class XDoubleCollectionBase
public XDoubleList unmodifiable()
XDoubleCollectionBase
UnsupportedOperationException
being thrown.unmodifiable
in interface XDoubleCollection
unmodifiable
in class XDoubleCollectionBase
public void reset()
Copyright © 2019 Neeve Research, LLC. All Rights Reserved.