Package com.carrotsearch.hppc
Class LongArrayList
- java.lang.Object
-
- com.carrotsearch.hppc.LongArrayList
-
- All Implemented Interfaces:
LongCollection,LongContainer,LongIndexedContainer,Preallocable,Cloneable,Iterable<LongCursor>,RandomAccess
@Generated(date="2018-05-21T12:24:05+0200", value="KTypeArrayList.java") public class LongArrayList extends Object implements LongIndexedContainer, Preallocable, Cloneable
An array-backed list of longs.
-
-
Field Summary
Fields Modifier and Type Field Description long[]bufferInternal array for storing the list.intelementsCountCurrent number of elements stored inbuffer.static long[]EMPTY_ARRAYAn immutable empty buffer (array).protected ArraySizingStrategyresizerBuffer resizing strategy.
-
Constructor Summary
Constructors Constructor Description LongArrayList()New instance with sane defaults.LongArrayList(int expectedElements)New instance with sane defaults.LongArrayList(int expectedElements, ArraySizingStrategy resizer)New instance with sane defaults.LongArrayList(LongContainer container)Creates a new list from the elements of another container in its iteration order.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(long e1)Adds an element to the end of this container (the last index is incremented by one).voidadd(long... elements)Vararg-signature method for adding elements at the end of the list.voidadd(long[] elements, int start, int length)Add all elements from a range of given array to the list.voidadd(long e1, long e2)Appends two elements at the end of the list.intaddAll(LongContainer container)Adds all elements from another container.intaddAll(Iterable<? extends LongCursor> iterable)Adds all elements from another iterable.voidclear()Sets the number of stored elements to zero.LongArrayListclone()Clone this object.booleancontains(long e1)Lookup a given element in the container.protected voidensureBufferSpace(int expectedAdditions)Ensures the internal buffer has enough free slots to storeexpectedAdditions.voidensureCapacity(int expectedElements)Ensure this container can hold at least the given number of elements without resizing its buffers.protected booleanequalElements(LongArrayList other)Compare index-aligned elements against anotherLongIndexedContainer.booleanequals(Object obj)Returnstrueonly if the other object is an instance of the same class and with the same elements.<T extends LongProcedure>
TforEach(T procedure)Applies aprocedureto all container elements.<T extends LongProcedure>
TforEach(T procedure, int fromIndex, int toIndex)Appliesprocedureto a slice of the list,fromIndex, inclusive, totoIndex, exclusive.static LongArrayListfrom(long... elements)Create a list from a variable number of arguments or an array oflong.longget(int index)inthashCode()intindexOf(long e1)Returns the index of the first occurrence of the specified element in this list, or -1 if this list does not contain the element.voidinsert(int index, long e1)Inserts the specified element at the specified position in this list.booleanisEmpty()Shortcut forsize() == 0.Iterator<LongCursor>iterator()Returns an iterator to a cursor traversing the collection.intlastIndexOf(long e1)Returns the index of the last occurrence of the specified element in this list, or -1 if this list does not contain the element.voidrelease()Sets the number of stored elements to zero and releases the internal storage array.longremove(int index)Removes the element at the specified position in this container and returns it.intremoveAll(long e1)Removes all occurrences ofefrom this collection.intremoveAll(LongLookupContainer c)Default implementation uses a predicate for removal.intremoveAll(LongPredicate predicate)Removes all elements in this collection for which the given predicate returnstrue.intremoveFirst(long e1)Removes the first element that equalse1, returning its deleted position or-1if the element was not found.intremoveLast(long e1)Removes the last element that equalse1, returning its deleted position or-1if the element was not found.voidremoveRange(int fromIndex, int toIndex)Removes from this container all of the elements with indexes betweenfromIndex, inclusive, andtoIndex, exclusive.voidresize(int newSize)Truncate or expand the list to the new size.intretainAll(LongLookupContainer c)Default implementation uses a predicate for retaining.intretainAll(LongPredicate predicate)Default implementation redirects toLongCollection.removeAll(LongPredicate)and negates the predicate.longset(int index, long e1)Replaces the element at the specified position in this list with the specified element.intsize()Return the current number of elements in this container.long[]toArray()Default implementation of copying to an array.StringtoString()Convert the contents of this container to a human-friendly string.voidtrimToSize()Trim the internal buffer to the current size.-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Methods inherited from interface com.carrotsearch.hppc.LongCollection
removeAll, retainAll, retainAll
-
-
-
-
Field Detail
-
EMPTY_ARRAY
public static final long[] EMPTY_ARRAY
An immutable empty buffer (array).
-
buffer
public long[] buffer
Internal array for storing the list. The array may be larger than the current size (size()).
-
elementsCount
public int elementsCount
Current number of elements stored inbuffer.
-
resizer
protected final ArraySizingStrategy resizer
Buffer resizing strategy.
-
-
Constructor Detail
-
LongArrayList
public LongArrayList()
New instance with sane defaults.
-
LongArrayList
public LongArrayList(int expectedElements)
New instance with sane defaults.- Parameters:
expectedElements- The expected number of elements guaranteed not to cause buffer expansion (inclusive).
-
LongArrayList
public LongArrayList(int expectedElements, ArraySizingStrategy resizer)New instance with sane defaults.- Parameters:
expectedElements- The expected number of elements guaranteed not to cause buffer expansion (inclusive).resizer- Underlying buffer sizing strategy.
-
LongArrayList
public LongArrayList(LongContainer container)
Creates a new list from the elements of another container in its iteration order.
-
-
Method Detail
-
add
public void add(long e1)
Adds an element to the end of this container (the last index is incremented by one).- Specified by:
addin interfaceLongIndexedContainer
-
add
public void add(long e1, long e2)Appends two elements at the end of the list. To add more than two elements, useadd(vararg-version) or access the buffer directly (tight loop).
-
add
public void add(long[] elements, int start, int length)Add all elements from a range of given array to the list.
-
add
public final void add(long... elements)
Vararg-signature method for adding elements at the end of the list.This method is handy, but costly if used in tight loops (anonymous array passing)
-
addAll
public int addAll(LongContainer container)
Adds all elements from another container.
-
addAll
public int addAll(Iterable<? extends LongCursor> iterable)
Adds all elements from another iterable.
-
insert
public void insert(int index, long e1)Inserts the specified element at the specified position in this list.- Specified by:
insertin interfaceLongIndexedContainer- Parameters:
index- The index at which the element should be inserted, shifting any existing and subsequent elements to the right.
-
get
public long get(int index)
- Specified by:
getin interfaceLongIndexedContainer- Returns:
- Returns the element at index
indexfrom the list.
-
set
public long set(int index, long e1)Replaces the element at the specified position in this list with the specified element.- Specified by:
setin interfaceLongIndexedContainer- Returns:
- Returns the previous value in the list.
-
remove
public long remove(int index)
Removes the element at the specified position in this container and returns it.- Specified by:
removein interfaceLongIndexedContainer- See Also:
LongIndexedContainer.removeFirst(long),LongIndexedContainer.removeLast(long),LongCollection.removeAll(long)
-
removeRange
public void removeRange(int fromIndex, int toIndex)Removes from this container all of the elements with indexes betweenfromIndex, inclusive, andtoIndex, exclusive.- Specified by:
removeRangein interfaceLongIndexedContainer
-
removeFirst
public int removeFirst(long e1)
Removes the first element that equalse1, returning its deleted position or-1if the element was not found.- Specified by:
removeFirstin interfaceLongIndexedContainer
-
removeLast
public int removeLast(long e1)
Removes the last element that equalse1, returning its deleted position or-1if the element was not found.- Specified by:
removeLastin interfaceLongIndexedContainer
-
removeAll
public int removeAll(long e1)
Removes all occurrences ofefrom this collection.- Specified by:
removeAllin interfaceLongCollection- Parameters:
e1- Element to be removed from this collection, if present.- Returns:
- The number of removed elements as a result of this call.
-
contains
public boolean contains(long e1)
Lookup a given element in the container. This operation has no speed guarantees (may be linear with respect to the size of this container).- Specified by:
containsin interfaceLongContainer- Returns:
- Returns
trueif this container has an element equal toe.
-
indexOf
public int indexOf(long e1)
Returns the index of the first occurrence of the specified element in this list, or -1 if this list does not contain the element.- Specified by:
indexOfin interfaceLongIndexedContainer
-
lastIndexOf
public int lastIndexOf(long e1)
Returns the index of the last occurrence of the specified element in this list, or -1 if this list does not contain the element.- Specified by:
lastIndexOfin interfaceLongIndexedContainer
-
isEmpty
public boolean isEmpty()
Shortcut forsize() == 0.- Specified by:
isEmptyin interfaceLongContainer
-
ensureCapacity
public void ensureCapacity(int expectedElements)
Ensure this container can hold at least the given number of elements without resizing its buffers.- Specified by:
ensureCapacityin interfacePreallocable- Parameters:
expectedElements- The total number of elements, inclusive.
-
ensureBufferSpace
protected void ensureBufferSpace(int expectedAdditions)
Ensures the internal buffer has enough free slots to storeexpectedAdditions. Increases internal buffer size if needed.
-
resize
public void resize(int newSize)
Truncate or expand the list to the new size. If the list is truncated, the buffer will not be reallocated (usetrimToSize()if you need a truncated buffer), but the truncated values will be reset to the default value (zero). If the list is expanded, the elements beyond the current size are initialized with JVM-defaults (zero ornullvalues).
-
size
public int size()
Return the current number of elements in this container. The time for calculating the container's size may takeO(n)time, although implementing classes should try to maintain the current size and return in constant time.- Specified by:
sizein interfaceLongContainer
-
trimToSize
public void trimToSize()
Trim the internal buffer to the current size.
-
clear
public void clear()
Sets the number of stored elements to zero. Releases and initializes the internal storage array to default values. To clear the list without cleaning the buffer, simply set theelementsCountfield to zero.- Specified by:
clearin interfaceLongCollection- See Also:
LongCollection.release()
-
release
public void release()
Sets the number of stored elements to zero and releases the internal storage array.- Specified by:
releasein interfaceLongCollection- See Also:
LongCollection.clear()
-
toArray
public long[] toArray()
Default implementation of copying to an array.The returned array is sized to match exactly the number of elements of the stack.
- Specified by:
toArrayin interfaceLongContainer
-
clone
public LongArrayList clone()
Clone this object. The returned clone will reuse the same hash function and array resizing strategy.
-
equals
public boolean equals(Object obj)
Returnstrueonly if the other object is an instance of the same class and with the same elements.
-
equalElements
protected boolean equalElements(LongArrayList other)
Compare index-aligned elements against anotherLongIndexedContainer.
-
iterator
public Iterator<LongCursor> iterator()
Returns an iterator to a cursor traversing the collection. The order of traversal is not defined. More than one cursor may be active at a time. The behavior of iterators is undefined if structural changes are made to the underlying collection.The iterator is implemented as a cursor and it returns the same cursor instance on every call to
Iterator.next()(to avoid boxing of primitive types). To read the current list's value (or index in the list) use the cursor's public fields. An example is shown below.for (LongCursor<long> c : container) { System.out.println("index=" + c.index + " value=" + c.value); }- Specified by:
iteratorin interfaceIterable<LongCursor>- Specified by:
iteratorin interfaceLongContainer
-
forEach
public <T extends LongProcedure> T forEach(T procedure)
Applies aprocedureto all container elements. Returns the argument (any subclass ofLongProcedure. This lets the caller to call methods of the argument by chaining the call (even if the argument is an anonymous type) to retrieve computed values, for example (IntContainer):int count = container.forEach(new IntProcedure() { int count; // this is a field declaration in an anonymous class. public void apply(int value) { count++; } }).count;- Specified by:
forEachin interfaceLongContainer
-
forEach
public <T extends LongProcedure> T forEach(T procedure, int fromIndex, int toIndex)
Appliesprocedureto a slice of the list,fromIndex, inclusive, totoIndex, exclusive.
-
removeAll
public int removeAll(LongPredicate predicate)
Removes all elements in this collection for which the given predicate returnstrue.- Specified by:
removeAllin interfaceLongCollection- Returns:
- Returns the number of removed elements.
-
forEach
public <T extends LongPredicate> T forEach(T predicate)
Applies apredicateto container elements as long, as the predicate returnstrue. The iteration is interrupted otherwise.- Specified by:
forEachin interfaceLongContainer
-
forEach
public <T extends LongPredicate> T forEach(T predicate, int fromIndex, int toIndex)
Appliespredicateto a slice of the list,fromIndex, inclusive, totoIndex, exclusive, or until predicate returnsfalse.
-
from
public static LongArrayList from(long... elements)
Create a list from a variable number of arguments or an array oflong. The elements are copied from the argument to the internal buffer.
-
removeAll
public int removeAll(LongLookupContainer c)
Default implementation uses a predicate for removal.- Specified by:
removeAllin interfaceLongCollection- Returns:
- Returns the number of removed elements.
-
retainAll
public int retainAll(LongLookupContainer c)
Default implementation uses a predicate for retaining.- Specified by:
retainAllin interfaceLongCollection- Returns:
- Returns the number of removed elements.
-
retainAll
public int retainAll(LongPredicate predicate)
Default implementation redirects toLongCollection.removeAll(LongPredicate)and negates the predicate.- Specified by:
retainAllin interfaceLongCollection- Returns:
- Returns the number of removed elements.
-
-