Create branch library-split
[SXSI/XMLTree.git] / libcds / src / static_sequence / static_sequence_wvtree.h
1 /* static_sequence_wvtree.h
2  * Copyright (C) 2008, Francisco Claude, all rights reserved.
3  *
4  * static_sequence_wvtree definition
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  */
21  
22 #ifndef STATIC_SEQUENCE_WVTREE_H
23 #define STATIC_SEQUENCE_WVTREE_H
24
25 #include <iostream>
26 #include <cassert>
27 #include <basics.h>
28 #include <static_bitsequence.h>
29 #include <static_bitsequence_builder.h>
30 #include <wt_node_internal.h>
31 #include <wt_coder_binary.h>
32 #include <alphabet_mapper.h>
33 #include <static_sequence.h>
34
35 //using namespace std;
36
37 /** Wavelet tree implementation using pointers. 
38  * 
39  *  @author Francisco Claude
40  */
41 class static_sequence_wvtree : public static_sequence {
42   public:
43
44     /** Builds a Wavelet Tree for the string
45      * pointed by symbols assuming its length
46      * equals n */
47     static_sequence_wvtree(uint * symbols, uint n, wt_coder * coder, static_bitsequence_builder * bmb, alphabet_mapper * am);
48
49     static_sequence_wvtree(uchar * symbols, uint n, wt_coder * coder, static_bitsequence_builder * bmb, alphabet_mapper * am);
50
51     virtual ~static_sequence_wvtree();
52
53     virtual uint rank(uint symbol, uint pos);
54     virtual uint rankLessThan(uint &symbol, uint pos);
55
56     virtual uint select(uint symbol, uint i);
57
58     virtual uint access(uint pos);
59     virtual uint access(uint pos, uint &rank)
60     {
61         return root->access(pos, rank);
62     }
63     
64     // Returns all elements from interval [i, j] such that 
65     // their value is in [min, max].
66     virtual vector<int> access(uint i, uint j, uint min, uint max);
67     virtual vector<int> accessAll(uint i, uint j);
68     virtual uint count(uint i, uint j, uint min, uint max);
69
70     virtual uint count(uint s);
71
72     virtual uint size();
73     
74     virtual uint save(FILE * fp);
75     static static_sequence_wvtree * load(FILE *fp);
76
77   protected:
78
79     static_sequence_wvtree();
80     
81     wt_node * root;
82     wt_coder * c;
83     alphabet_mapper * am;
84     //bitmap_builder * bmb;
85     
86     /** Length of the string. */
87     uint n;
88
89     /** Height of the Wavelet Tree. */
90     uint max_v;
91
92     /** Flag for testing for correcteness. */
93     bool test;
94
95                 
96 };
97 #endif /* _STATIC_SEQUENCE_WVTREE_H */