BitMagic-C++
sample21.cpp
Go to the documentation of this file.
1/*
2Copyright(c) 2002-2017 Anatoliy Kuznetsov(anatoliy_kuznetsov at yahoo.com)
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15
16For more information please visit: http://bitmagic.io
17*/
18
19/** \example sample21.cpp
20
21 Example for shifting - erase of bits.
22
23 \sa bm::bvector::erase
24 \sa bm::bvector::shift_left
25*/
26
27/*! \file sample21.cpp
28 \brief Example: bvector<> - bit-shifts
29*/
30
31#include <iostream>
32
33#include "bm.h"
34#include "bmundef.h" /* clear the pre-proc defines from BM */
35
36using namespace std;
37
38// Utility template function used to print container
39template<class T> void PrintContainer(T first, T last)
40{
41 if (first == last)
42 cout << "<EMPTY SET>";
43 else
44 for(;first != last; ++first)
45 cout << *first << ", ";
46 cout << endl;
47}
48
49int main(void)
50{
51 try
52 {
53 bm::bvector<> bv { 1, 10, 100 };
54 bv.optimize(); // run memory compression
55
56 cout << "Source set:";
57 PrintContainer(bv.first(), bv.end());
58
59 // shift the vector right by 1
60 //
61 bool carry_over = bv.shift_left();
62 cout << "CO=" << carry_over << endl;
63 PrintContainer(bv.first(), bv.end()); // 0, 9, 99
64
65 // erase 0 bit (equivalent of shift_left)
66 //
67 bv.erase(0);
68 PrintContainer(bv.first(), bv.end()); // 8, 98
69
70 // erase/insert manipulations with bit-vector may de-optimize
71 // the bit-vector so it needs re-optimization at some point
72 //
73 bv.optimize();
74
75 }
76 catch(std::exception& ex)
77 {
78 std::cerr << ex.what() << std::endl;
79 return 1;
80 }
81
82
83 return 0;
84}
85
Compressed bit-vector bvector<> container, set algebraic methods, traversal iterators.
pre-processor un-defines to avoid global space pollution (internal)
Bitvector Bit-vector container with runtime compression of bits.
Definition: bm.h:115
void optimize(bm::word_t *temp_block=0, optmode opt_mode=opt_compress, statistics *stat=0)
Optimize memory bitvector's memory allocation.
Definition: bm.h:3600
void PrintContainer(T first, T last)
Definition: sample21.cpp:39
int main(void)
Definition: sample21.cpp:49