Package com.carrotsearch.hppc
Class ShortArrayList
- java.lang.Object
-
- com.carrotsearch.hppc.ShortArrayList
-
- All Implemented Interfaces:
Accountable
,Preallocable
,ShortCollection
,ShortContainer
,ShortIndexedContainer
,java.lang.Cloneable
,java.lang.Iterable<ShortCursor>
,java.util.RandomAccess
- Direct Known Subclasses:
ShortStack
@Generated(date="2020-09-07T17:20:13+0200", value="KTypeArrayList.java") public class ShortArrayList extends java.lang.Object implements ShortIndexedContainer, Preallocable, java.lang.Cloneable, Accountable
An array-backed list of shorts.
-
-
Field Summary
Fields Modifier and Type Field Description short[]
buffer
Internal array for storing the list.int
elementsCount
Current number of elements stored inbuffer
.static short[]
EMPTY_ARRAY
An immutable empty buffer (array).protected ArraySizingStrategy
resizer
Buffer resizing strategy.
-
Constructor Summary
Constructors Constructor Description ShortArrayList()
New instance with sane defaults.ShortArrayList(int expectedElements)
New instance with sane defaults.ShortArrayList(int expectedElements, ArraySizingStrategy resizer)
New instance with sane defaults.ShortArrayList(ShortContainer 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 void
add(short e1)
Adds an element to the end of this container (the last index is incremented by one).void
add(short... elements)
Vararg-signature method for adding elements at the end of the list.void
add(short[] elements, int start, int length)
Add all elements from a range of given array to the list.void
add(short e1, short e2)
Appends two elements at the end of the list.int
addAll(ShortContainer container)
Adds all elements from another container.int
addAll(java.lang.Iterable<? extends ShortCursor> iterable)
Adds all elements from another iterable.void
clear()
Sets the number of stored elements to zero.ShortArrayList
clone()
Clone this object.boolean
contains(short e1)
Lookup a given element in the container.protected void
ensureBufferSpace(int expectedAdditions)
Ensures the internal buffer has enough free slots to storeexpectedAdditions
.void
ensureCapacity(int expectedElements)
Ensure this container can hold at least the given number of elements without resizing its buffers.protected boolean
equalElements(ShortArrayList other)
Compare index-aligned elements against anotherShortIndexedContainer
.boolean
equals(java.lang.Object obj)
Returnstrue
only if the other object is an instance of the same class and with the same elements.<T extends ShortProcedure>
TforEach(T procedure)
Applies aprocedure
to all container elements.<T extends ShortProcedure>
TforEach(T procedure, int fromIndex, int toIndex)
Appliesprocedure
to a slice of the list,fromIndex
, inclusive, totoIndex
, exclusive.static ShortArrayList
from(short... elements)
Create a list from a variable number of arguments or an array ofshort
.short
get(int index)
int
hashCode()
int
indexOf(short 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.void
insert(int index, short e1)
Inserts the specified element at the specified position in this list.boolean
isEmpty()
Shortcut forsize() == 0
.java.util.Iterator<ShortCursor>
iterator()
Returns an iterator to a cursor traversing the collection.int
lastIndexOf(short 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.long
ramBytesAllocated()
Allocated memory estimationlong
ramBytesUsed()
Bytes that is actually been usedvoid
release()
Sets the number of stored elements to zero and releases the internal storage array.short
remove(int index)
Removes the element at the specified position in this container and returns it.int
removeAll(short e1)
Removes all occurrences ofe
from this collection.int
removeAll(ShortPredicate predicate)
Removes all elements in this collection for which the given predicate returnstrue
.int
removeAll(ShortLookupContainer c)
Default implementation uses a predicate for removal.int
removeFirst(short e1)
Removes the first element that equalse1
, returning its deleted position or-1
if the element was not found.int
removeLast(short e1)
Removes the last element that equalse1
, returning its deleted position or-1
if the element was not found.void
removeRange(int fromIndex, int toIndex)
Removes from this container all of the elements with indexes betweenfromIndex
, inclusive, andtoIndex
, exclusive.void
resize(int newSize)
Truncate or expand the list to the new size.int
retainAll(ShortPredicate predicate)
Default implementation redirects toShortCollection.removeAll(ShortPredicate)
and negates the predicate.int
retainAll(ShortLookupContainer c)
Default implementation uses a predicate for retaining.short
set(int index, short e1)
Replaces the element at the specified position in this list with the specified element.int
size()
Return the current number of elements in this container.short[]
toArray()
Default implementation of copying to an array.java.lang.String
toString()
Convert the contents of this container to a human-friendly string.void
trimToSize()
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 com.carrotsearch.hppc.ShortCollection
removeAll, retainAll, retainAll
-
-
-
-
Field Detail
-
EMPTY_ARRAY
public static final short[] EMPTY_ARRAY
An immutable empty buffer (array).
-
buffer
public short[] 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
-
ShortArrayList
public ShortArrayList()
New instance with sane defaults.
-
ShortArrayList
public ShortArrayList(int expectedElements)
New instance with sane defaults.- Parameters:
expectedElements
- The expected number of elements guaranteed not to cause buffer expansion (inclusive).
-
ShortArrayList
public ShortArrayList(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.
-
ShortArrayList
public ShortArrayList(ShortContainer container)
Creates a new list from the elements of another container in its iteration order.
-
-
Method Detail
-
add
public void add(short e1)
Adds an element to the end of this container (the last index is incremented by one).- Specified by:
add
in interfaceShortIndexedContainer
-
add
public void add(short e1, short 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(short[] elements, int start, int length)
Add all elements from a range of given array to the list.
-
add
public final void add(short... 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(ShortContainer container)
Adds all elements from another container.
-
addAll
public int addAll(java.lang.Iterable<? extends ShortCursor> iterable)
Adds all elements from another iterable.
-
insert
public void insert(int index, short e1)
Inserts the specified element at the specified position in this list.- Specified by:
insert
in interfaceShortIndexedContainer
- Parameters:
index
- The index at which the element should be inserted, shifting any existing and subsequent elements to the right.
-
get
public short get(int index)
- Specified by:
get
in interfaceShortIndexedContainer
- Returns:
- Returns the element at index
index
from the list.
-
set
public short set(int index, short e1)
Replaces the element at the specified position in this list with the specified element.- Specified by:
set
in interfaceShortIndexedContainer
- Returns:
- Returns the previous value in the list.
-
remove
public short remove(int index)
Removes the element at the specified position in this container and returns it.- Specified by:
remove
in interfaceShortIndexedContainer
- See Also:
ShortIndexedContainer.removeFirst(short)
,ShortIndexedContainer.removeLast(short)
,ShortCollection.removeAll(short)
-
removeRange
public void removeRange(int fromIndex, int toIndex)
Removes from this container all of the elements with indexes betweenfromIndex
, inclusive, andtoIndex
, exclusive.- Specified by:
removeRange
in interfaceShortIndexedContainer
-
removeFirst
public int removeFirst(short e1)
Removes the first element that equalse1
, returning its deleted position or-1
if the element was not found.- Specified by:
removeFirst
in interfaceShortIndexedContainer
-
removeLast
public int removeLast(short e1)
Removes the last element that equalse1
, returning its deleted position or-1
if the element was not found.- Specified by:
removeLast
in interfaceShortIndexedContainer
-
removeAll
public int removeAll(short e1)
Removes all occurrences ofe
from this collection.- Specified by:
removeAll
in interfaceShortCollection
- 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(short 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:
contains
in interfaceShortContainer
- Returns:
- Returns
true
if this container has an element equal toe
.
-
indexOf
public int indexOf(short 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:
indexOf
in interfaceShortIndexedContainer
-
lastIndexOf
public int lastIndexOf(short 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:
lastIndexOf
in interfaceShortIndexedContainer
-
isEmpty
public boolean isEmpty()
Shortcut forsize() == 0
.- Specified by:
isEmpty
in interfaceShortContainer
-
ensureCapacity
public void ensureCapacity(int expectedElements)
Ensure this container can hold at least the given number of elements without resizing its buffers.- Specified by:
ensureCapacity
in 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 ornull
values).
-
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:
size
in interfaceShortContainer
-
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 theelementsCount
field to zero.- Specified by:
clear
in interfaceShortCollection
- See Also:
ShortCollection.release()
-
release
public void release()
Sets the number of stored elements to zero and releases the internal storage array.- Specified by:
release
in interfaceShortCollection
- See Also:
ShortCollection.clear()
-
toArray
public short[] 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:
toArray
in interfaceShortContainer
-
clone
public ShortArrayList clone()
Clone this object. The returned clone will reuse the same hash function and array resizing strategy.- Overrides:
clone
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
Returnstrue
only if the other object is an instance of the same class and with the same elements.- Overrides:
equals
in classjava.lang.Object
-
equalElements
protected boolean equalElements(ShortArrayList other)
Compare index-aligned elements against anotherShortIndexedContainer
.
-
ramBytesAllocated
public long ramBytesAllocated()
Description copied from interface:Accountable
Allocated memory estimation- Specified by:
ramBytesAllocated
in interfaceAccountable
- Returns:
- Ram allocated in bytes
-
ramBytesUsed
public long ramBytesUsed()
Description copied from interface:Accountable
Bytes that is actually been used- Specified by:
ramBytesUsed
in interfaceAccountable
- Returns:
- Ram used in bytes
-
iterator
public java.util.Iterator<ShortCursor> 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 (ShortCursor<short> c : container) { System.out.println("index=" + c.index + " value=" + c.value); }
- Specified by:
iterator
in interfacejava.lang.Iterable<ShortCursor>
- Specified by:
iterator
in interfaceShortContainer
-
forEach
public <T extends ShortProcedure> T forEach(T procedure)
Applies aprocedure
to all container elements. Returns the argument (any subclass ofShortProcedure
. 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:
forEach
in interfaceShortContainer
-
forEach
public <T extends ShortProcedure> T forEach(T procedure, int fromIndex, int toIndex)
Appliesprocedure
to a slice of the list,fromIndex
, inclusive, totoIndex
, exclusive.
-
removeAll
public int removeAll(ShortPredicate predicate)
Removes all elements in this collection for which the given predicate returnstrue
.- Specified by:
removeAll
in interfaceShortCollection
- Returns:
- Returns the number of removed elements.
-
forEach
public <T extends ShortPredicate> T forEach(T predicate)
Applies apredicate
to container elements as long, as the predicate returnstrue
. The iteration is interrupted otherwise.- Specified by:
forEach
in interfaceShortContainer
-
forEach
public <T extends ShortPredicate> T forEach(T predicate, int fromIndex, int toIndex)
Appliespredicate
to a slice of the list,fromIndex
, inclusive, totoIndex
, exclusive, or until predicate returnsfalse
.
-
from
public static ShortArrayList from(short... elements)
Create a list from a variable number of arguments or an array ofshort
. The elements are copied from the argument to the internal buffer.
-
removeAll
public int removeAll(ShortLookupContainer c)
Default implementation uses a predicate for removal.- Specified by:
removeAll
in interfaceShortCollection
- Returns:
- Returns the number of removed elements.
-
retainAll
public int retainAll(ShortLookupContainer c)
Default implementation uses a predicate for retaining.- Specified by:
retainAll
in interfaceShortCollection
- Returns:
- Returns the number of removed elements.
-
retainAll
public int retainAll(ShortPredicate predicate)
Default implementation redirects toShortCollection.removeAll(ShortPredicate)
and negates the predicate.- Specified by:
retainAll
in interfaceShortCollection
- Returns:
- Returns the number of removed elements.
-
toString
public java.lang.String toString()
Convert the contents of this container to a human-friendly string.- Overrides:
toString
in classjava.lang.Object
-
-