public final class MappeableArrayContainer extends MappeableContainer implements Cloneable
Modifier and Type | Field and Description |
---|---|
protected int |
cardinality |
protected ShortBuffer |
content |
protected static int |
DEFAULT_MAX_SIZE |
ContainerNames
Constructor and Description |
---|
MappeableArrayContainer()
Create an array container with default capacity
|
MappeableArrayContainer(ArrayContainer bc)
Creates a new container from a non-mappeable one.
|
MappeableArrayContainer(int capacity)
Create an array container with specified capacity
|
MappeableArrayContainer(int firstOfRun,
int lastOfRun)
Create an array container with a run of ones from firstOfRun to lastOfRun, inclusive.
|
MappeableArrayContainer(ShortBuffer array,
int cardinality)
Construct a new ArrayContainer backed by the provided ShortBuffer.
|
Modifier and Type | Method and Description |
---|---|
MappeableContainer |
add(int begin,
int end)
Return a new container with all shorts in [begin,end) added using an unsigned interpretation.
|
MappeableContainer |
add(short x)
running time is in O(n) time if insert is not in order.
|
MappeableArrayContainer |
and(MappeableArrayContainer value2)
Computes the bitwise AND of this container with another (intersection).
|
MappeableContainer |
and(MappeableBitmapContainer x)
Computes the bitwise AND of this container with another (intersection).
|
MappeableContainer |
and(MappeableRunContainer value2)
Computes the bitwise AND of this container with another (intersection).
|
int |
andCardinality(MappeableArrayContainer value2) |
int |
andCardinality(MappeableBitmapContainer x) |
int |
andCardinality(MappeableRunContainer x) |
MappeableArrayContainer |
andNot(MappeableArrayContainer value2)
Computes the bitwise ANDNOT of this container with another (difference).
|
MappeableArrayContainer |
andNot(MappeableBitmapContainer value2)
Computes the bitwise ANDNOT of this container with another (difference).
|
MappeableContainer |
andNot(MappeableRunContainer x)
Computes the bitwise ANDNOT of this container with another (difference).
|
void |
clear()
Empties the container
|
MappeableArrayContainer |
clone() |
boolean |
contains(short x)
Checks whether the contain contains the provided value
|
boolean |
equals(Object o) |
void |
fillLeastSignificant16bits(int[] x,
int i,
int mask)
Fill the least significant 16 bits of the integer array, starting at index index, with the
short values from this container.
|
MappeableContainer |
flip(short x)
Add a short to the container if it is not present, otherwise remove it.
|
void |
forEach(short msb,
IntConsumer ic)
Iterate through the values of this container and pass them
along to the IntConsumer, using msb as the 16 most significant bits.
|
protected int |
getArraySizeInBytes()
Size of the underlying array
|
protected static int |
getArraySizeInBytes(int cardinality) |
int |
getCardinality()
Computes the distinct number of short values in the container.
|
ShortIterator |
getReverseShortIterator()
Iterator to visit the short values in the container in descending order.
|
PeekableShortIterator |
getShortIterator()
Iterator to visit the short values in the container in ascending order.
|
int |
getSizeInBytes()
Computes an estimate of the memory usage of this container.
|
int |
hashCode() |
MappeableContainer |
iadd(int begin,
int end)
Add all shorts in [begin,end) using an unsigned interpretation.
|
MappeableArrayContainer |
iand(MappeableArrayContainer value2)
Computes the in-place bitwise AND of this container with another (intersection).
|
MappeableContainer |
iand(MappeableBitmapContainer value2)
Computes the in-place bitwise AND of this container with another (intersection).
|
MappeableContainer |
iand(MappeableRunContainer value2)
Computes the in-place bitwise AND of this container with another (intersection).
|
MappeableArrayContainer |
iandNot(MappeableArrayContainer value2)
Computes the in-place bitwise ANDNOT of this container with another (difference).
|
MappeableArrayContainer |
iandNot(MappeableBitmapContainer value2)
Computes the in-place bitwise ANDNOT of this container with another (difference).
|
MappeableContainer |
iandNot(MappeableRunContainer value2)
Computes the in-place bitwise ANDNOT of this container with another (difference).
|
MappeableContainer |
inot(int firstOfRange,
int lastOfRange)
Computes the in-place bitwise NOT of this container (complement).
|
boolean |
intersects(MappeableArrayContainer value2)
Returns true if the current container intersects the other container.
|
boolean |
intersects(MappeableBitmapContainer x)
Returns true if the current container intersects the other container.
|
boolean |
intersects(MappeableRunContainer x)
Returns true if the current container intersects the other container.
|
MappeableContainer |
ior(MappeableArrayContainer value2)
Computes the in-place bitwise OR of this container with another (union).
|
MappeableContainer |
ior(MappeableBitmapContainer x)
Computes the in-place bitwise OR of this container with another (union).
|
MappeableContainer |
ior(MappeableRunContainer value2)
Computes the in-place bitwise OR of this container with another (union).
|
MappeableContainer |
iremove(int begin,
int end)
Remove shorts in [begin,end) using an unsigned interpretation.
|
protected boolean |
isArrayBacked() |
Iterator<Short> |
iterator() |
MappeableContainer |
ixor(MappeableArrayContainer value2)
Computes the in-place bitwise XOR of this container with another (symmetric difference).
|
MappeableContainer |
ixor(MappeableBitmapContainer x)
Computes the in-place bitwise XOR of this container with another (symmetric difference).
|
MappeableContainer |
ixor(MappeableRunContainer value2)
Computes the in-place bitwise XOR of this container with another (symmetric difference).
|
protected MappeableContainer |
lazyor(MappeableArrayContainer value2) |
MappeableContainer |
limit(int maxcardinality)
Create a new MappeableContainer containing at most maxcardinality integers.
|
protected void |
loadData(MappeableBitmapContainer bitmapContainer) |
MappeableContainer |
not(int firstOfRange,
int lastOfRange)
Computes the bitwise NOT of this container (complement).
|
MappeableContainer |
or(MappeableArrayContainer value2)
Computes the bitwise OR of this container with another (union).
|
MappeableContainer |
or(MappeableBitmapContainer x)
Computes the bitwise OR of this container with another (union).
|
MappeableContainer |
or(MappeableRunContainer value2)
Computes the bitwise OR of this container with another (union).
|
protected MappeableContainer |
or(ShortIterator it) |
int |
rank(short lowbits)
Rank returns the number of integers that are smaller or equal to x (Rank(infinity) would be
GetCardinality()).
|
void |
readExternal(ObjectInput in) |
MappeableContainer |
remove(int begin,
int end)
Return a new container with all shorts in [begin,end) remove using an unsigned interpretation.
|
MappeableContainer |
remove(short x)
Remove the short from this container.
|
MappeableContainer |
repairAfterLazy()
The output of a lazyOR or lazyIOR might be an invalid container, this should be called on it.
|
MappeableContainer |
runOptimize()
Convert to MappeableRunContainers, when the result is smaller.
|
short |
select(int j)
Return the jth value
|
int |
serializedSizeInBytes()
Report the number of bytes required to serialize this container.
|
protected static int |
serializedSizeInBytes(int cardinality) |
MappeableBitmapContainer |
toBitmapContainer()
Copies the data in a bitmap container.
|
Container |
toContainer()
Convert to a non-mappeable container.
|
short[] |
toShortArray()
Create a copy of the content of this container as a short array.
|
String |
toString() |
void |
trim()
If possible, recover wasted memory.
|
protected void |
writeArray(DataOutput out)
Write just the underlying array.
|
void |
writeExternal(ObjectOutput out) |
MappeableContainer |
xor(MappeableArrayContainer value2)
Computes the bitwise XOR of this container with another (symmetric difference).
|
MappeableContainer |
xor(MappeableBitmapContainer x)
Computes the bitwise XOR of this container with another (symmetric difference).
|
MappeableContainer |
xor(MappeableRunContainer value2)
Computes the bitwise XOR of this container with another (symmetric difference).
|
protected MappeableContainer |
xor(ShortIterator it) |
and, andCardinality, andNot, getContainerName, iand, iandNot, intersects, ior, ixor, lazyIOR, lazyOR, or, rangeOfOnes, xor
finalize, getClass, notify, notifyAll, wait, wait, wait
forEach, spliterator
protected static final int DEFAULT_MAX_SIZE
protected int cardinality
protected ShortBuffer content
public MappeableArrayContainer()
public MappeableArrayContainer(ArrayContainer bc)
bc
- the original containerpublic MappeableArrayContainer(int capacity)
capacity
- The capacity of the containerpublic MappeableArrayContainer(int firstOfRun, int lastOfRun)
firstOfRun
- first indexlastOfRun
- last index (range is exclusive)public MappeableArrayContainer(ShortBuffer array, int cardinality)
array
- ShortBuffer where the data is storedcardinality
- cardinality (number of values stored)protected static int getArraySizeInBytes(int cardinality)
protected static int serializedSizeInBytes(int cardinality)
public MappeableContainer add(int begin, int end)
MappeableContainer
add
in class MappeableContainer
begin
- start of range (inclusive)end
- end of range (exclusive)public MappeableContainer add(short x)
add
in class MappeableContainer
x
- short to be addedpublic MappeableArrayContainer and(MappeableArrayContainer value2)
MappeableContainer
and
in class MappeableContainer
value2
- other containerpublic MappeableContainer and(MappeableBitmapContainer x)
MappeableContainer
and
in class MappeableContainer
x
- other containerpublic MappeableContainer and(MappeableRunContainer value2)
MappeableContainer
and
in class MappeableContainer
value2
- other containerpublic MappeableArrayContainer andNot(MappeableArrayContainer value2)
MappeableContainer
andNot
in class MappeableContainer
value2
- other containerpublic MappeableArrayContainer andNot(MappeableBitmapContainer value2)
MappeableContainer
andNot
in class MappeableContainer
value2
- other containerpublic MappeableContainer andNot(MappeableRunContainer x)
MappeableContainer
andNot
in class MappeableContainer
x
- other containerpublic void clear()
MappeableContainer
clear
in class MappeableContainer
public MappeableArrayContainer clone()
clone
in class MappeableContainer
public boolean contains(short x)
MappeableContainer
contains
in class MappeableContainer
x
- value to checkpublic void fillLeastSignificant16bits(int[] x, int i, int mask)
MappeableContainer
fillLeastSignificant16bits
in class MappeableContainer
x
- provided arrayi
- starting indexmask
- indicates most significant bitspublic MappeableContainer flip(short x)
MappeableContainer
flip
in class MappeableContainer
x
- short to be addedprotected int getArraySizeInBytes()
MappeableContainer
getArraySizeInBytes
in class MappeableContainer
public int getCardinality()
MappeableContainer
getCardinality
in class MappeableContainer
public ShortIterator getReverseShortIterator()
MappeableContainer
getReverseShortIterator
in class MappeableContainer
public PeekableShortIterator getShortIterator()
MappeableContainer
getShortIterator
in class MappeableContainer
public int getSizeInBytes()
MappeableContainer
getSizeInBytes
in class MappeableContainer
public MappeableContainer iadd(int begin, int end)
MappeableContainer
iadd
in class MappeableContainer
begin
- start of range (inclusive)end
- end of range (exclusive)public MappeableArrayContainer iand(MappeableArrayContainer value2)
MappeableContainer
iand
in class MappeableContainer
value2
- other containerpublic MappeableContainer iand(MappeableBitmapContainer value2)
MappeableContainer
iand
in class MappeableContainer
value2
- other containerpublic MappeableContainer iand(MappeableRunContainer value2)
MappeableContainer
iand
in class MappeableContainer
value2
- other containerpublic MappeableArrayContainer iandNot(MappeableArrayContainer value2)
MappeableContainer
iandNot
in class MappeableContainer
value2
- other containerpublic MappeableArrayContainer iandNot(MappeableBitmapContainer value2)
MappeableContainer
iandNot
in class MappeableContainer
value2
- other containerpublic MappeableContainer iandNot(MappeableRunContainer value2)
MappeableContainer
iandNot
in class MappeableContainer
value2
- other containerpublic MappeableContainer inot(int firstOfRange, int lastOfRange)
MappeableContainer
inot
in class MappeableContainer
firstOfRange
- beginning of range (inclusive); 0 is beginning of this container.lastOfRange
- ending of range (exclusive)public boolean intersects(MappeableArrayContainer value2)
MappeableContainer
intersects
in class MappeableContainer
value2
- other containerpublic boolean intersects(MappeableBitmapContainer x)
MappeableContainer
intersects
in class MappeableContainer
x
- other containerpublic boolean intersects(MappeableRunContainer x)
MappeableContainer
intersects
in class MappeableContainer
x
- other containerpublic MappeableContainer ior(MappeableArrayContainer value2)
MappeableContainer
ior
in class MappeableContainer
value2
- other containerpublic MappeableContainer ior(MappeableBitmapContainer x)
MappeableContainer
ior
in class MappeableContainer
x
- other containerpublic MappeableContainer ior(MappeableRunContainer value2)
MappeableContainer
ior
in class MappeableContainer
value2
- other containerpublic MappeableContainer iremove(int begin, int end)
MappeableContainer
iremove
in class MappeableContainer
begin
- start of range (inclusive)end
- end of range (exclusive)protected boolean isArrayBacked()
isArrayBacked
in class MappeableContainer
public MappeableContainer ixor(MappeableArrayContainer value2)
MappeableContainer
ixor
in class MappeableContainer
value2
- other containerpublic MappeableContainer ixor(MappeableBitmapContainer x)
MappeableContainer
ixor
in class MappeableContainer
x
- other containerpublic MappeableContainer ixor(MappeableRunContainer value2)
MappeableContainer
ixor
in class MappeableContainer
value2
- other containerpublic MappeableContainer limit(int maxcardinality)
MappeableContainer
limit
in class MappeableContainer
maxcardinality
- maximal cardinalityprotected void loadData(MappeableBitmapContainer bitmapContainer)
public MappeableContainer not(int firstOfRange, int lastOfRange)
MappeableContainer
not
in class MappeableContainer
firstOfRange
- beginning of range (inclusive); 0 is beginning of this container.lastOfRange
- ending of range (exclusive)public MappeableContainer or(MappeableArrayContainer value2)
MappeableContainer
or
in class MappeableContainer
value2
- other containerprotected MappeableContainer lazyor(MappeableArrayContainer value2)
public MappeableContainer or(MappeableBitmapContainer x)
MappeableContainer
or
in class MappeableContainer
x
- other containerpublic MappeableContainer or(MappeableRunContainer value2)
MappeableContainer
or
in class MappeableContainer
value2
- other containerprotected MappeableContainer or(ShortIterator it)
public int rank(short lowbits)
MappeableContainer
rank
in class MappeableContainer
lowbits
- upper limitpublic void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
readExternal
in interface Externalizable
IOException
ClassNotFoundException
public MappeableContainer remove(int begin, int end)
MappeableContainer
remove
in class MappeableContainer
begin
- start of range (inclusive)end
- end of range (exclusive)public MappeableContainer remove(short x)
MappeableContainer
remove
in class MappeableContainer
x
- to be removedpublic MappeableContainer repairAfterLazy()
MappeableContainer
repairAfterLazy
in class MappeableContainer
public MappeableContainer runOptimize()
MappeableContainer
runOptimize
in class MappeableContainer
public short select(int j)
MappeableContainer
select
in class MappeableContainer
j
- index of the valuepublic int serializedSizeInBytes()
MappeableContainer
serializedSizeInBytes
in class MappeableContainer
public MappeableBitmapContainer toBitmapContainer()
toBitmapContainer
in class MappeableContainer
public Container toContainer()
MappeableContainer
toContainer
in class MappeableContainer
public short[] toShortArray()
public void trim()
MappeableContainer
trim
in class MappeableContainer
protected void writeArray(DataOutput out) throws IOException
MappeableContainer
writeArray
in class MappeableContainer
out
- output streamIOException
- in case of failurepublic void writeExternal(ObjectOutput out) throws IOException
writeExternal
in interface Externalizable
IOException
public MappeableContainer xor(MappeableArrayContainer value2)
MappeableContainer
xor
in class MappeableContainer
value2
- other containerpublic MappeableContainer xor(MappeableBitmapContainer x)
MappeableContainer
xor
in class MappeableContainer
x
- other containerpublic MappeableContainer xor(MappeableRunContainer value2)
MappeableContainer
xor
in class MappeableContainer
value2
- other parameterprotected MappeableContainer xor(ShortIterator it)
public void forEach(short msb, IntConsumer ic)
MappeableContainer
forEach
in class MappeableContainer
msb
- 16 most significant bitsic
- consumerpublic int andCardinality(MappeableArrayContainer value2)
andCardinality
in class MappeableContainer
public int andCardinality(MappeableBitmapContainer x)
andCardinality
in class MappeableContainer
public int andCardinality(MappeableRunContainer x)
andCardinality
in class MappeableContainer
Copyright © 2016. All Rights Reserved.