b8ff85e9ce606c0221f3fecbb3dce1e0fc3df984
[SXSI/XMLTree.git] / libcds / src / static_sequence / wt_node_leaf.h
1 /* wt_node_leaf.h
2  * Copyright (C) 2008, Francisco Claude, all rights reserved.
3  *
4  * wt_node_leaf
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 wt_node_leaf_h
23 #define wt_node_leaf_h
24
25 #include <wt_node.h>
26 #include <basics.h>
27 #include <wt_coder.h>
28 #include <cassert>
29
30 /** Class for representing leaves of the wavelet tree. 
31  * 
32  *  @author Francisco Claude
33  */
34 class wt_node_leaf: public wt_node {
35         public:
36                 wt_node_leaf(uint symbol, uint count);
37                 virtual ~wt_node_leaf();
38                 virtual uint rank(uint symbol, uint pos, uint l, wt_coder * c);
39                 virtual uint select(uint symbol, uint pos, uint l, wt_coder * c);
40                 virtual uint access(uint pos);
41                 virtual uint size();
42     virtual uint save(FILE *fp);
43     static wt_node_leaf * load(FILE *fp);
44
45         protected:
46     wt_node_leaf();
47                 uint symbol;
48                 uint count;
49 };
50
51 #endif