Package it.unimi.dsi.sux4j.bits
Class SimpleBigSelectZero
java.lang.Object
it.unimi.dsi.sux4j.bits.SimpleBigSelectZero
- All Implemented Interfaces:
SelectZero
,Serializable
A big version of
SimpleSelectZero
that can only be used with a LongBigArrayBitVector
(or long big arrays).- See Also:
-
Constructor Summary
ConstructorDescriptionSimpleBigSelectZero
(long[][] bits, long length) Creates a new selection structure using a bit vector specified by a big array of longs and a number of bits.SimpleBigSelectZero
(LongBigArrayBitVector bitVector) Creates a new selection structure using the specified instance ofLongArrayBitVector
. -
Method Summary
Modifier and TypeMethodDescriptionReturns the bit vector indexed by this structure.long
numBits()
Returns the overall number of bits allocated by this structure.long
selectZero
(long rank) Returns the position of the bit of given zero rank.long[]
selectZero
(long rank, long[] dest) Performs a bulk select of consecutive zero ranks into a given array.long[]
selectZero
(long rank, long[] dest, int offset, int length) Performs a bulk select of consecutive zero ranks into a given array fragment.
-
Constructor Details
-
SimpleBigSelectZero
public SimpleBigSelectZero(long[][] bits, long length) Creates a new selection structure using a bit vector specified by a big array of longs and a number of bits.- Parameters:
bits
- a big array of longs representing a bit array.length
- the number of bits to use frombits
.
-
SimpleBigSelectZero
Creates a new selection structure using the specified instance ofLongArrayBitVector
.- Parameters:
bitVector
- an instance ofLongArrayBitVector
.
-
-
Method Details
-
selectZero
public long selectZero(long rank) Description copied from interface:SelectZero
Returns the position of the bit of given zero rank. Equivalently, returns the greatest position that is preceded by the specified number of zeroes.- Specified by:
selectZero
in interfaceSelectZero
- Parameters:
rank
- a zero rank.- Returns:
- the position of the bit of given zero rank; if no such bit exists, behavior is undefined .
-
selectZero
public long[] selectZero(long rank, long[] dest, int offset, int length) Description copied from interface:SelectZero
Performs a bulk select of consecutive zero ranks into a given array fragment.- Specified by:
selectZero
in interfaceSelectZero
- Parameters:
rank
- the first zero rank to select.dest
- the destination array; it will be filled withlength
positions of consecutive bits starting at positionoffset
; must be of length greater thanoffset
.offset
- the first bit position written indest
.length
- the number of bit positions indest
starting atoffset
.- Returns:
dest
- See Also:
-
selectZero
public long[] selectZero(long rank, long[] dest) Description copied from interface:SelectZero
Performs a bulk select of consecutive zero ranks into a given array.- Specified by:
selectZero
in interfaceSelectZero
- Parameters:
rank
- the first zero rank to select.dest
- the destination array; it will be filled with position of consecutive bits.- Returns:
dest
- See Also:
-
numBits
public long numBits()Description copied from interface:SelectZero
Returns the overall number of bits allocated by this structure.- Specified by:
numBits
in interfaceSelectZero
- Returns:
- the overall number of bits allocated by this structure (not including the bits of the indexed vector).
-
bitVector
Description copied from interface:SelectZero
Returns the bit vector indexed by this structure.Note that you are not supposed to modify the returned vector.
- Specified by:
bitVector
in interfaceSelectZero
- Returns:
- the bit vector indexed by this structure.
-