X-Git-Url: http://git.nguyen.vg/gitweb/?a=blobdiff_plain;f=libcds%2Fsrc%2Fstatic_sequence%2Fstatic_sequence.h;h=e3b72dc79e0704c9c0a9f25a000d5635e8ecfdcf;hb=6a9117a97674437c9fe00b099c40ccb61d45d704;hp=cf8a1e002d1cd951e99b3a6b62122fb4f29fa8bf;hpb=a9846746dc7a55764591fcc273fd48c6049df962;p=SXSI%2FXMLTree.git diff --git a/libcds/src/static_sequence/static_sequence.h b/libcds/src/static_sequence/static_sequence.h index cf8a1e0..e3b72dc 100644 --- a/libcds/src/static_sequence/static_sequence.h +++ b/libcds/src/static_sequence/static_sequence.h @@ -46,13 +46,24 @@ public: /** Returns the number of occurrences of c until position i */ virtual uint rank(uint c, uint i)=0; - + virtual uint rankLessThan(uint &i, uint j) + { + //assert(0); // Implemented only in static_sequence_wvtree + return -1; + } + /** 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; /** Returns the i-th element */ virtual uint access(uint i)=0; + virtual uint access(uint i, uint &rank) + { + //assert(0); // Implemented only in static_sequence_wvtree + return -1; + } + /** Returns the length of the sequence */ virtual uint length(); @@ -65,6 +76,8 @@ public: /** Stores the bitmap given a file pointer, return 0 in case of success */ virtual uint save(FILE * fp)=0; + + virtual bool test(uint * seq, uint n); /** Reads a bitmap determining the type */ static static_sequence * load(FILE * fp);