X-Git-Url: http://git.nguyen.vg/gitweb/?a=blobdiff_plain;f=libcds%2Fsrc%2Fstatic_sequence%2Fstatic_sequence.h;h=4fa5da47d51bcb0e4f174997e4c6336501c71897;hb=935f20b93a3db7cd2f9f39573d4ab434fcc4356a;hp=363437b403d4e21b200aae1d1ac9cb99d882350f;hpb=bbeeb03980ddf51c0f32fd3c42321dc9ef708c27;p=SXSI%2FXMLTree.git diff --git a/libcds/src/static_sequence/static_sequence.h b/libcds/src/static_sequence/static_sequence.h index 363437b..4fa5da4 100644 --- a/libcds/src/static_sequence/static_sequence.h +++ b/libcds/src/static_sequence/static_sequence.h @@ -25,6 +25,7 @@ #include #include +#include #define WVTREE_HDR 2 #define GMR_CHUNK_HDR 3 @@ -56,6 +57,7 @@ public: /** Returns the position of the i-th c * @return (uint)-1 if i=0, len if i exceeds the number of cs */ virtual uint select(uint c, uint i)=0; + virtual uint select_next(uint c, uint i); /** Returns the i-th element */ virtual uint access(uint i)=0; @@ -64,7 +66,29 @@ public: //assert(0); // Implemented only in static_sequence_wvtree return -1; } - + + // Returns all elements from interval [i, j] such that + // their value is in [min, max]. + virtual vector access(uint i, uint j, uint min, uint max) + { + //assert(0); // Implemented only in static_sequence_wvtree + return vector(); + } + + // Returns all elements from interval [i, j] + virtual vector accessAll(uint i, uint j) + { + //assert(0); // Implemented only in static_sequence_wvtree + return vector(); + } + + // Counts the number of elements in interval [i,j] such that + // their values are in [min,max] + virtual uint count(uint i, uint j, uint min, uint max) + { + //assert(0); // Implemented only in static_sequence_wvtree + return 0; + } /** Returns the length of the sequence */ virtual uint length();