|
|
|
This class records a set of integers, where each integer is either present or not present in the set.
More...
#include "sparseArray.h"
List of all members.
Classes |
| class | Subrange |
Public Member Functions |
|
| SparseArray (const SparseArray ©) |
|
| SparseArray (const BitArray &from) |
| void | clear () |
| | Sets all the bits in the SparseArray off.
|
| void | clear_bit (int index) |
| | Sets the nth bit off.
|
| void | clear_range (int low_bit, int size) |
| | Sets the indicated range of bits off.
|
| int | compare_to (const SparseArray &other) const |
| | Returns a number less than zero if this SparseArray sorts before the indicated other SparseArray, greater than zero if it sorts after, or 0 if they are equivalent.
|
| bool | get_bit (int index) const |
| | Returns true if the nth bit is set, false if it is cleared.
|
| bool | get_highest_bits () const |
| | Returns true if the infinite set of bits beyond get_num_bits() are all on, or false of they are all off.
|
| int | get_highest_off_bit () const |
| | Returns the index of the highest 0 bit in the array.
|
| int | get_highest_on_bit () const |
| | Returns the index of the highest 1 bit in the array.
|
| int | get_lowest_off_bit () const |
| | Returns the index of the lowest 0 bit in the array.
|
| int | get_lowest_on_bit () const |
| | Returns the index of the lowest 1 bit in the array.
|
| int | get_next_higher_different_bit (int low_bit) const |
| | Returns the index of the next bit in the array, above low_bit, whose value is different that the value of low_bit.
|
| int | get_num_bits () const |
| | Returns the current number of possibly different bits in this array.
|
| int | get_num_off_bits () const |
| | Returns the number of bits that are set to 0 in the array.
|
| int | get_num_on_bits () const |
| | Returns the number of bits that are set to 1 in the array.
|
| int | get_num_subranges () const |
| | Returns the number of separate subranges stored in the SparseArray.
|
| int | get_subrange_begin (int n) const |
| | Returns the first numeric element in the nth subrange.
|
| int | get_subrange_end (int n) const |
| | Returns the last numeric element, plus one, in the nth subrange.
|
| bool | has_all_of (int low_bit, int size) const |
| | Returns true if all bits in the indicated range are set, false otherwise.
|
| bool | has_any_of (int low_bit, int size) const |
| | Returns true if any bit in the indicated range is set, false otherwise.
|
| bool | has_bits_in_common (const SparseArray &other) const |
| | Returns true if this SparseArray has any "one" bits in common with the other one, false otherwise.
|
| void | invert_in_place () |
| | Inverts all the bits in the SparseArray.
|
| bool | is_all_on () const |
| | Returns true if the entire bitmask is one, false otherwise.
|
| bool | is_inverse () const |
| | If this is true, the SparseArray is actually defined as a list of subranges of integers that are *not* in the set.
|
| bool | is_zero () const |
| | Returns true if the entire bitmask is zero, false otherwise.
|
|
bool | operator!= (const SparseArray &other) const |
|
SparseArray | operator& (const SparseArray &other) const |
|
void | operator&= (const SparseArray &other) |
| bool | operator< (const SparseArray &other) const |
| | Returns true if the unsigned integer which is represented by this SparseArray is less than that of the other one, false otherwise.
|
|
SparseArray | operator<< (int shift) const |
| void | operator<<= (int shift) |
| | Logical left shift.
|
|
SparseArray & | operator= (const SparseArray ©) |
|
bool | operator== (const SparseArray &other) const |
|
SparseArray | operator>> (int shift) const |
| void | operator>>= (int shift) |
| | Logical right shift.
|
|
SparseArray | operator^ (const SparseArray &other) const |
|
void | operator^= (const SparseArray &other) |
|
SparseArray | operator| (const SparseArray &other) const |
|
void | operator|= (const SparseArray &other) |
|
SparseArray | operator~ () const |
|
void | output (ostream &out) const |
| void | read_datagram (DatagramIterator &scan, BamReader *manager) |
| | Reads the object that was previously written to a Bam file.
|
| void | set_bit (int index) |
| | Sets the nth bit on.
|
| void | set_bit_to (int index, bool value) |
| | Sets the nth bit either on or off, according to the indicated bool value.
|
| void | set_range (int low_bit, int size) |
| | Sets the indicated range of bits on.
|
| void | set_range_to (bool value, int low_bit, int size) |
| | Sets the indicated range of bits to either on or off.
|
| void | write_datagram (BamWriter *manager, Datagram &dg) const |
| | Writes the contents of this object to the datagram for shipping out to a Bam file.
|
Static Public Member Functions |
| static SparseArray | all_off () |
| | Returns a SparseArray whose bits are all off.
|
| static SparseArray | all_on () |
| | Returns a SparseArray with an infinite array of bits, all on.
|
| static SparseArray | bit (int index) |
| | Returns a SparseArray with only the indicated bit on.
|
|
static TypeHandle | get_class_type () |
| static int | get_max_num_bits () |
| | If get_max_num_bits() returned true, this method may be called to return the maximum number of bits that may be stored in this structure.
|
| static bool | has_max_num_bits () |
| | Returns true if there is a maximum number of bits that may be stored in this structure, false otherwise.
|
|
static void | init_type () |
| static SparseArray | lower_on (int on_bits) |
| | Returns a SparseArray whose lower on_bits bits are on.
|
| static SparseArray | range (int low_bit, int size) |
| | Returns a SparseArray whose size bits, beginning at low_bit, are on.
|
Detailed Description
This class records a set of integers, where each integer is either present or not present in the set.
It is similar in principle and in interface to a BitArray (which can be thought of as a set of integers, one integer corresponding to each different bit position), but the SparseArray is implemented as a list of min/max subrange lists, rather than as a bitmask.
This makes it particularly efficient for storing sets which consist of large sections of consecutively included or consecutively excluded elements, with arbitrarily large integers, but particularly inefficient for doing boolean operations such as & or |.
Also, unlike BitArray, the SparseArray can store negative integers.
Definition at line 49 of file sparseArray.h.
Member Function Documentation
| SparseArray SparseArray::bit |
( |
int |
index | ) |
[inline, static] |
| void SparseArray::clear |
( |
| ) |
[inline] |
| void SparseArray::clear_bit |
( |
int |
index | ) |
[inline] |
| void SparseArray::clear_range |
( |
int |
low_bit, |
|
|
int |
size |
|
) |
| [inline] |
| int SparseArray::compare_to |
( |
const SparseArray & |
other | ) |
const |
| bool SparseArray::get_bit |
( |
int |
index | ) |
const [inline] |
| bool SparseArray::get_highest_bits |
( |
| ) |
const [inline] |
Returns true if the infinite set of bits beyond get_num_bits() are all on, or false of they are all off.
Definition at line 235 of file sparseArray.I.
| int SparseArray::get_highest_off_bit |
( |
| ) |
const |
| int SparseArray::get_highest_on_bit |
( |
| ) |
const |
| int SparseArray::get_lowest_off_bit |
( |
| ) |
const |
| int SparseArray::get_lowest_on_bit |
( |
| ) |
const |
| int SparseArray::get_max_num_bits |
( |
| ) |
[inline, static] |
If get_max_num_bits() returned true, this method may be called to return the maximum number of bits that may be stored in this structure.
It is an error to call this if get_max_num_bits() return false.
It is always an error to call this method. The SparseArray has no maximum number of bits. This method is defined so generic programming algorithms can use BitMask or SparseArray interchangeably.
Definition at line 150 of file sparseArray.I.
| int SparseArray::get_next_higher_different_bit |
( |
int |
low_bit | ) |
const |
| int SparseArray::get_num_bits |
( |
| ) |
const [inline] |
| int SparseArray::get_num_off_bits |
( |
| ) |
const |
| int SparseArray::get_num_on_bits |
( |
| ) |
const |
| int SparseArray::get_num_subranges |
( |
| ) |
const [inline] |
| int SparseArray::get_subrange_begin |
( |
int |
n | ) |
const [inline] |
| int SparseArray::get_subrange_end |
( |
int |
n | ) |
const [inline] |
| bool SparseArray::has_all_of |
( |
int |
low_bit, |
|
|
int |
size |
|
) |
| const [inline] |
Returns true if all bits in the indicated range are set, false otherwise.
Definition at line 291 of file sparseArray.I.
| bool SparseArray::has_any_of |
( |
int |
low_bit, |
|
|
int |
size |
|
) |
| const [inline] |
Returns true if any bit in the indicated range is set, false otherwise.
Definition at line 276 of file sparseArray.I.
Referenced by get_bit().
| bool SparseArray::has_bits_in_common |
( |
const SparseArray & |
other | ) |
const |
Returns true if this SparseArray has any "one" bits in common with the other one, false otherwise.
This is equivalent to (array & other) != 0, but may be faster.
Definition at line 223 of file sparseArray.cxx.
References is_zero().
| bool SparseArray::has_max_num_bits |
( |
| ) |
[inline, static] |
Returns true if there is a maximum number of bits that may be stored in this structure, false otherwise.
If this returns true, the number may be queried in get_max_num_bits().
This method always returns false. The SparseArray has no maximum number of bits. This method is defined so generic programming algorithms can use BitMask or SparseArray interchangeably.
Definition at line 132 of file sparseArray.I.
| void SparseArray::invert_in_place |
( |
| ) |
[inline] |
| bool SparseArray::is_all_on |
( |
| ) |
const [inline] |
| bool SparseArray::is_inverse |
( |
| ) |
const [inline] |
If this is true, the SparseArray is actually defined as a list of subranges of integers that are *not* in the set.
If this is false (the default), then the subranges define the integers that *are* in the set. This affects the interpretation of the values returned by iterating through get_num_subranges().
Definition at line 503 of file sparseArray.I.
| bool SparseArray::is_zero |
( |
| ) |
const [inline] |
| SparseArray SparseArray::lower_on |
( |
int |
on_bits | ) |
[inline, static] |
| bool SparseArray::operator< |
( |
const SparseArray & |
other | ) |
const [inline] |
Returns true if the unsigned integer which is represented by this SparseArray is less than that of the other one, false otherwise.
Definition at line 391 of file sparseArray.I.
References compare_to().
| void SparseArray::operator<<= |
( |
int |
shift | ) |
[inline] |
Logical left shift.
Since negative bit positions have meaning in a SparseArray, real bit values are rotated in on the left (not necessarily zero).
Definition at line 476 of file sparseArray.I.
| void SparseArray::operator>>= |
( |
int |
shift | ) |
[inline] |
Logical right shift.
The rightmost bits become negative, but are not lost; they will reappear into the zero position if the array is later left-shifted.
Definition at line 488 of file sparseArray.I.
| SparseArray SparseArray::range |
( |
int |
low_bit, |
|
|
int |
size |
|
) |
| [inline, static] |
| void SparseArray::set_bit |
( |
int |
index | ) |
[inline] |
| void SparseArray::set_bit_to |
( |
int |
index, |
|
|
bool |
value |
|
) |
| [inline] |
| void SparseArray::set_range |
( |
int |
low_bit, |
|
|
int |
size |
|
) |
| [inline] |
| void SparseArray::set_range_to |
( |
bool |
value, |
|
|
int |
low_bit, |
|
|
int |
size |
|
) |
| [inline] |
The documentation for this class was generated from the following files:
| | |