Package it.unimi.dsi.fastutil.shorts
Class ShortBigLists.ListBigList
java.lang.Object
java.util.AbstractCollection<Short>
it.unimi.dsi.fastutil.shorts.AbstractShortCollection
it.unimi.dsi.fastutil.shorts.AbstractShortBigList
it.unimi.dsi.fastutil.shorts.ShortBigLists.ListBigList
- All Implemented Interfaces:
BigList<Short>
,ShortBigList
,ShortCollection
,ShortIterable
,ShortStack
,Size64
,Stack<Short>
,Serializable
,Comparable<BigList<? extends Short>>
,Iterable<Short>
,Collection<Short>
- Enclosing class:
ShortBigLists
A class exposing a list as a big list.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.shorts.AbstractShortBigList
AbstractShortBigList.ShortRandomAccessSubList, AbstractShortBigList.ShortSubList
-
Method Summary
Modifier and TypeMethodDescriptionvoid
add
(long index, short key) Inserts the specified element at the specified position in this type-specific big list (optional operation).boolean
add
(short key) Ensures that this collection contains the specified element (optional operation).boolean
addAll
(long index, ShortBigList c) Inserts all of the elements in the specified type-specific big list into this type-specific big list at the specified position (optional operation).boolean
addAll
(long index, ShortCollection c) Inserts all of the elements in the specified type-specific collection into this type-specific big list at the specified position (optional operation).boolean
addAll
(long index, Collection<? extends Short> c) Adds all of the elements in the specified collection to this list (optional operation).boolean
Appends all of the elements in the specified type-specific big list to the end of this type-specific big list (optional operation).boolean
Adds all elements of the given type-specific collection to this collection.boolean
addAll
(Collection<? extends Short> c) void
clear()
boolean
contains
(short key) Returns true if this list contains the specified element.boolean
Checks whether this collection contains all elements from the given type-specific collection.boolean
containsAll
(Collection<?> c) short
getShort
(long index) Returns the element at the specified position.int
hashCode()
Returns the hash code for this big list, which is identical toList.hashCode()
.long
indexOf
(short k) Returns the index of the first occurrence of the specified element in this type-specific big list, or -1 if this big list does not contain the element.boolean
isEmpty()
Checks whether the stack is empty.iterator()
Returns a type-specific iterator on the elements of this collection.long
lastIndexOf
(short k) Returns the index of the last occurrence of the specified element in this type-specific big list, or -1 if this big list does not contain the element.Returns a type-specific big-list iterator on this type-specific big list.listIterator
(long index) Returns a type-specific list iterator on this type-specific big list starting at a given index.boolean
Remove from this collection all elements in the given type-specific collection.boolean
removeAll
(Collection<?> c) void
removeElements
(long from, long to) Removes (hopefully quickly) elements of this type-specific big list.short
removeShort
(long index) Removes the element at the specified position.boolean
Retains in this collection only elements from the given type-specific collection.boolean
retainAll
(Collection<?> c) short
set
(long index, short k) Replaces the element at the specified position in this big list with the specified element (optional operation).void
size
(long size) Sets the size of this big list.long
size64()
Returns the size of this data structure as a long.subList
(long from, long to) Returns a type-specific view of the portion of this type-specific big list from the indexfrom
, inclusive, to the indexto
, exclusive.<T> T[]
toArray
(T[] a) short[]
Returns a primitive type array containing the items of this collection.short[]
toShortArray
(short[] a) Deprecated.Methods inherited from class it.unimi.dsi.fastutil.shorts.AbstractShortBigList
add, addElements, addElements, compareTo, equals, forEach, get, getElements, indexOf, intSpliterator, lastIndexOf, peek, peekShort, pop, popShort, push, push, rem, remove, set, setElements, size, top, topShort, toString
Methods inherited from class it.unimi.dsi.fastutil.shorts.AbstractShortCollection
add, contains, remove, toArray
Methods inherited from class java.util.AbstractCollection
toArray
Methods inherited from interface java.util.Collection
toArray, toArray
Methods inherited from interface it.unimi.dsi.fastutil.shorts.ShortBigList
addAll, addAll, getElements, setElements, setElements, spliterator
Methods inherited from interface it.unimi.dsi.fastutil.shorts.ShortCollection
add, contains, intIterator, intParallelStream, intStream, parallelStream, remove, removeIf, removeIf, removeIf, stream, toArray
Methods inherited from interface it.unimi.dsi.fastutil.shorts.ShortIterable
forEach, forEach
-
Method Details
-
size64
public long size64()Description copied from interface:Size64
Returns the size of this data structure as a long. -
size
public void size(long size) Description copied from interface:BigList
Sets the size of this big list.If the specified size is smaller than the current size, the last elements are discarded. Otherwise, they are filled with 0/
null
/false
.- Specified by:
size
in interfaceBigList<Short>
- Overrides:
size
in classAbstractShortBigList
- Parameters:
size
- the new size.
-
iterator
Description copied from class:AbstractShortBigList
Returns a type-specific iterator on the elements of this collection.- Specified by:
iterator
in interfaceCollection<Short>
- Specified by:
iterator
in interfaceIterable<Short>
- Specified by:
iterator
in interfaceShortBigList
- Specified by:
iterator
in interfaceShortCollection
- Specified by:
iterator
in interfaceShortIterable
- Overrides:
iterator
in classAbstractShortBigList
- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
-
listIterator
Description copied from class:AbstractShortBigList
Returns a type-specific big-list iterator on this type-specific big list.- Specified by:
listIterator
in interfaceBigList<Short>
- Specified by:
listIterator
in interfaceShortBigList
- Overrides:
listIterator
in classAbstractShortBigList
- Returns:
- a big-list iterator over the elements in this big list.
- See Also:
-
listIterator
Description copied from class:AbstractShortBigList
Returns a type-specific list iterator on this type-specific big list starting at a given index.- Specified by:
listIterator
in interfaceBigList<Short>
- Specified by:
listIterator
in interfaceShortBigList
- Overrides:
listIterator
in classAbstractShortBigList
- Parameters:
index
- index of first element to be returned from the big-list iterator.- Returns:
- a big-list iterator of the elements in this big list, starting at the specified position in this big list.
- See Also:
-
addAll
Description copied from class:AbstractShortBigList
Adds all of the elements in the specified collection to this list (optional operation).- Specified by:
addAll
in interfaceBigList<Short>
- Overrides:
addAll
in classAbstractShortBigList
- Parameters:
index
- index at which to insert the first element from the specified collection.c
- collection containing elements to be added to this big list.- Returns:
true
if this big list changed as a result of the call- See Also:
-
subList
Description copied from interface:ShortBigList
Returns a type-specific view of the portion of this type-specific big list from the indexfrom
, inclusive, to the indexto
, exclusive.- Specified by:
subList
in interfaceBigList<Short>
- Specified by:
subList
in interfaceShortBigList
- Overrides:
subList
in classAbstractShortBigList
- Parameters:
from
- the starting element (inclusive).to
- the ending element (exclusive).- Returns:
- a big sublist view of this big list.
- See Also:
-
contains
public boolean contains(short key) Description copied from class:AbstractShortBigList
Returns true if this list contains the specified element.- Specified by:
contains
in interfaceShortCollection
- Overrides:
contains
in classAbstractShortBigList
- See Also:
-
toShortArray
public short[] toShortArray()Description copied from interface:ShortCollection
Returns a primitive type array containing the items of this collection.- Specified by:
toShortArray
in interfaceShortCollection
- Overrides:
toShortArray
in classAbstractShortCollection
- Returns:
- a primitive type array containing the items of this collection.
- See Also:
-
removeElements
public void removeElements(long from, long to) Description copied from class:AbstractShortBigList
Removes (hopefully quickly) elements of this type-specific big list.This is a trivial iterator-based implementation. It is expected that implementations will override this method with a more optimized version.
- Specified by:
removeElements
in interfaceShortBigList
- Overrides:
removeElements
in classAbstractShortBigList
- Parameters:
from
- the start index (inclusive).to
- the end index (exclusive).
-
toShortArray
Deprecated.Description copied from class:AbstractShortCollection
Returns a primitive type array containing the items of this collection.Note that, contrarily to
Collection.toArray(Object[])
, this methods just writes all elements of this collection: no special value will be added after the last one.- Specified by:
toShortArray
in interfaceShortCollection
- Overrides:
toShortArray
in classAbstractShortCollection
- Parameters:
a
- if this array is big enough, it will be used to store this collection.- Returns:
- a primitive type array containing the items of this collection.
- See Also:
-
addAll
Description copied from class:AbstractShortBigList
Inserts all of the elements in the specified type-specific collection into this type-specific big list at the specified position (optional operation).- Specified by:
addAll
in interfaceShortBigList
- Overrides:
addAll
in classAbstractShortBigList
- See Also:
-
addAll
Description copied from class:AbstractShortBigList
Adds all elements of the given type-specific collection to this collection.- Specified by:
addAll
in interfaceShortCollection
- Overrides:
addAll
in classAbstractShortBigList
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection changed as a result of the call.- See Also:
-
addAll
Description copied from interface:ShortBigList
Inserts all of the elements in the specified type-specific big list into this type-specific big list at the specified position (optional operation).- Specified by:
addAll
in interfaceShortBigList
- See Also:
-
addAll
Description copied from interface:ShortBigList
Appends all of the elements in the specified type-specific big list to the end of this type-specific big list (optional operation).- Specified by:
addAll
in interfaceShortBigList
- See Also:
-
containsAll
Description copied from interface:ShortCollection
Checks whether this collection contains all elements from the given type-specific collection.- Specified by:
containsAll
in interfaceShortCollection
- Overrides:
containsAll
in classAbstractShortCollection
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection contains all elements of the argument.- See Also:
-
removeAll
Description copied from interface:ShortCollection
Remove from this collection all elements in the given type-specific collection.- Specified by:
removeAll
in interfaceShortCollection
- Overrides:
removeAll
in classAbstractShortCollection
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection changed as a result of the call.- See Also:
-
retainAll
Description copied from interface:ShortCollection
Retains in this collection only elements from the given type-specific collection.- Specified by:
retainAll
in interfaceShortCollection
- Overrides:
retainAll
in classAbstractShortCollection
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection changed as a result of the call.- See Also:
-
add
public void add(long index, short key) Description copied from class:AbstractShortBigList
Inserts the specified element at the specified position in this type-specific big list (optional operation).- Specified by:
add
in interfaceShortBigList
- Overrides:
add
in classAbstractShortBigList
- See Also:
-
add
public boolean add(short key) Description copied from class:AbstractShortBigList
Ensures that this collection contains the specified element (optional operation).- Specified by:
add
in interfaceShortCollection
- Overrides:
add
in classAbstractShortBigList
- See Also:
-
getShort
public short getShort(long index) Description copied from interface:ShortBigList
Returns the element at the specified position.- Specified by:
getShort
in interfaceShortBigList
- See Also:
-
indexOf
public long indexOf(short k) Description copied from interface:ShortBigList
Returns the index of the first occurrence of the specified element in this type-specific big list, or -1 if this big list does not contain the element.- Specified by:
indexOf
in interfaceShortBigList
- Overrides:
indexOf
in classAbstractShortBigList
- See Also:
-
lastIndexOf
public long lastIndexOf(short k) Description copied from interface:ShortBigList
Returns the index of the last occurrence of the specified element in this type-specific big list, or -1 if this big list does not contain the element.- Specified by:
lastIndexOf
in interfaceShortBigList
- Overrides:
lastIndexOf
in classAbstractShortBigList
- See Also:
-
removeShort
public short removeShort(long index) Description copied from class:AbstractShortBigList
Removes the element at the specified position.- Specified by:
removeShort
in interfaceShortBigList
- Overrides:
removeShort
in classAbstractShortBigList
- See Also:
-
set
public short set(long index, short k) Description copied from class:AbstractShortBigList
Replaces the element at the specified position in this big list with the specified element (optional operation).- Specified by:
set
in interfaceShortBigList
- Overrides:
set
in classAbstractShortBigList
- See Also:
-
isEmpty
public boolean isEmpty()Description copied from interface:Stack
Checks whether the stack is empty.- Specified by:
isEmpty
in interfaceCollection<Short>
- Specified by:
isEmpty
in interfaceStack<Short>
- Overrides:
isEmpty
in classAbstractCollection<Short>
- Returns:
- true if the stack is empty.
-
toArray
public <T> T[] toArray(T[] a) - Specified by:
toArray
in interfaceCollection<Short>
- Overrides:
toArray
in classAbstractCollection<Short>
-
containsAll
Description copied from class:AbstractShortCollection
- Specified by:
containsAll
in interfaceCollection<Short>
- Overrides:
containsAll
in classAbstractShortCollection
-
addAll
Description copied from class:AbstractShortBigList
- Specified by:
addAll
in interfaceCollection<Short>
- Overrides:
addAll
in classAbstractShortBigList
-
removeAll
Description copied from class:AbstractShortCollection
- Specified by:
removeAll
in interfaceCollection<Short>
- Overrides:
removeAll
in classAbstractShortCollection
-
retainAll
Description copied from class:AbstractShortCollection
- Specified by:
retainAll
in interfaceCollection<Short>
- Overrides:
retainAll
in classAbstractShortCollection
-
clear
public void clear()Description copied from class:AbstractShortBigList
- Specified by:
clear
in interfaceCollection<Short>
- Overrides:
clear
in classAbstractShortBigList
-
hashCode
public int hashCode()Description copied from class:AbstractShortBigList
Returns the hash code for this big list, which is identical toList.hashCode()
.- Specified by:
hashCode
in interfaceCollection<Short>
- Overrides:
hashCode
in classAbstractShortBigList
- Returns:
- the hash code for this big list.
-