d7e41d2d1c3f03e4d17628fef99498c626b9eff2
[SXSI/XMLTree.git] / libcds / src / static_sequence / wt_node_internal.h
1 /* wt_node_internal.h
2  * Copyright (C) 2008, Francisco Claude, all rights reserved.
3  *
4  * wt_node_internal
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_internal_h
23 #define wt_node_internal_h
24
25 #include <wt_node.h>
26 #include <wt_node_leaf.h>
27 #include <wt_coder.h>
28 #include <basics.h>
29 #include <static_bitsequence.h>
30 #include <static_bitsequence_builder.h>
31 #include <cassert>
32
33 /** Clase for representing internal nodes  
34  * 
35  *  @author Francisco Claude
36  */
37 class wt_node_internal: public wt_node {
38         public:
39                 wt_node_internal(uint * seq, uint n, uint l, wt_coder * c, static_bitsequence_builder * bmb);
40                 wt_node_internal(uchar * seq, uint n, uint l, wt_coder * c, static_bitsequence_builder * bmb, uint, uint *);
41                 virtual ~wt_node_internal();
42                 virtual uint rank(uint symbol, uint pos, uint level, wt_coder * c);
43                 virtual uint rankLessThan(uint &symbol, uint pos);
44                 virtual uint select(uint symbol, uint pos, uint level, wt_coder * c);
45                 virtual uint access(uint pos);
46                 virtual uint access(uint pos, uint &rank);
47                 virtual void access(vector<int> &result, uint i, uint j, uint min, uint max, uint l, uint pivot);
48                 virtual void access(vector<int> &result, uint i, uint j);
49                 virtual uint access(uint i, uint j, uint min, uint max, uint l, uint pivot);
50                 virtual uint size();
51     virtual uint save(FILE *fp);
52     static wt_node_internal * load(FILE *fp);
53
54                 
55         protected:
56     wt_node_internal();
57                 wt_node *left_child, *right_child;
58                 static_bitsequence * bitmap;
59                 //uint length;
60 };
61
62 #endif