Create branch library-split
[SXSI/XMLTree.git] / libcds / src / static_bitsequence / static_bitsequence_naive.cpp
1 /* static_bitsequence_naive.cpp
2  * Copyright (C) 2008, Francisco Claude, all rights reserved.
3  *
4  * Naive Bitsequence - don't use, only for testing
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 #include "static_bitsequence_naive.h"
23
24 static_bitsequence_naive::static_bitsequence_naive(uint * bitseq, uint len) {
25         this->len = len;
26         this->bitseq = new uint[len/W+(len%W>0)];
27   for(uint i=0;i<len/W+(len%W>0);i++)
28     this->bitseq[i] = bitseq[i];
29         uint ret = 0;
30         for(uint k=0;k<len;k++)
31                 if(bitget(bitseq,k))
32                         ret++;
33         this->ones = ret;
34 }
35
36 static_bitsequence_naive::~static_bitsequence_naive() {
37         delete [] bitseq;
38 }
39
40 uint static_bitsequence_naive::rank1(uint i) {
41   if(i>=len) return ones;
42         uint ret = 0;
43         for(uint k=0;k<=i;k++)
44                 if(bitget(bitseq,k))
45                         ret++;
46         return ret;
47 }
48
49 uint static_bitsequence_naive::select1(uint i) {
50         if(i==0) return (uint)-1;
51         if(i>ones) return len;
52         uint cnt = 0;
53         for(uint k=0;k<len;k++) {
54                 if(bitget(bitseq,k))
55                         cnt++;
56                 if(cnt==i)
57                         return k;
58         }
59         return len;
60 }
61
62 bool static_bitsequence_naive::access(uint i) {
63         return bitget(bitseq,i)!=0;
64 }
65
66 uint static_bitsequence_naive::size() {
67         return BW*uint_len(len,1);
68 }
69
70 int static_bitsequence_naive::save(FILE * fp) { return -1; }