Missing files from the latest version of libcds.googlecode.com
[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     virtual ~static_sequence_wvtree();
50
51     virtual uint rank(uint symbol, uint pos);
52
53     virtual uint select(uint symbol, uint i);
54
55     virtual uint access(uint pos);
56     
57     virtual uint count(uint s);
58
59     virtual uint size();
60     
61     virtual uint save(FILE * fp);
62     static static_sequence_wvtree * load(FILE *fp);
63
64   protected:
65
66     static_sequence_wvtree();
67     
68     wt_node * root;
69     wt_coder * c;
70     alphabet_mapper * am;
71     //bitmap_builder * bmb;
72     
73     /** Length of the string. */
74     uint n;
75
76     /** Height of the Wavelet Tree. */
77     uint max_v;
78
79     /** Flag for testing for correcteness. */
80     bool test;
81
82                 
83 };
84 #endif /* _STATIC_SEQUENCE_WVTREE_H */