Class | Description |
---|---|
AbstractLongList |
Abstract base class for resizable lists holding
long elements;
abstract. |
DistinctNumberList |
Resizable compressed list holding numbers; based on the fact that a number
from a large list with few distinct values need not take more than
log(distinctValues) bits; implemented with a
MinMaxNumberList.
|
LongArrayList |
Resizable list holding
long elements; implemented with arrays. |
LongListAdapter |
Adapter that permits an
AbstractLongList to be
viewed and treated as a JDK 1.2 AbstractList . |
MinMaxNumberList |
Resizable compressed list holding numbers; based on the fact that a value in
a given interval need not take more than log(max-min+1) bits;
implemented with a cern.colt.bitvector.BitVector.
|
SimpleLongArrayList |
Resizable list holding
long elements; implemented with arrays;
not efficient; just to demonstrate which methods you must override to
implement a fully functional list. |
Jump to the Parallel Colt Homepage