BitMagic-C++
svsample01.cpp

Example of how to use bm::sparse_vector<> template class to set or import values.bm::sparse_vector<> uses bit-splicing method to keep bit-planes separate to provide on-the fly succinct data vector.

See also
bm::sparse_vector<>::import
bm::sparse_vector<>::at
bm::sparse_vector<>::optimize
bm::sparse_vector<>::size
/*
Copyright(c) 2002-2017 Anatoliy Kuznetsov(anatoliy_kuznetsov at yahoo.com)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
For more information please visit: http://bitmagic.io
*/
/** \example svsample01.cpp
Example of how to use bm::sparse_vector<> template class to set or
import values.
bm::sparse_vector<> uses bit-splicing method to keep bit-planes separate
to provide on-the fly succinct data vector.
\sa bm::sparse_vector<>::import
\sa bm::sparse_vector<>::at
\sa bm::sparse_vector<>::optimize
\sa bm::sparse_vector<>::size
*/
/*! \file svsample01.cpp
\brief Example: sparse_vector<> container set values
*/
#include <iostream>
#include <algorithm>
#include "bm.h"
#include "bmsparsevec.h"
#include "bmundef.h" /* clear the pre-proc defines from BM */
using namespace std;
/**
bm::sparse_vector for unsigned int data
*/
static
void Demo1()
{
using value_type = bm::sparse_vector<int, bm::bvector<> >::value_type;
unsigned arr[3] = {1,2,3};
sv1.import(arr, 3); // import from a C-style array (fastest way to populate)
// optimize memory allocation of sparse vector
{
sv1.optimize(tb);
}
cout << "sv1.size() = " << sv1.size() << endl;
cout << "sv[]:";
// print the vector elements using direct access operator
for (unsigned i = 0; i < sv1.size(); ++i)
{
cout << sv1.at(i) << ",";
}
cout << endl;
// add more at the end
unsigned arr2[5] = {10, 20, 30, 40, 50};
sv1.import(arr2, 5, sv1.size());
cout << "sv1.size() = " << sv1.size() << endl;
cout << "sv[]:";
// print using std::for_each plus lambda
std::for_each(sv1.begin(), sv1.end(),
[](value_type n) { cout << n << ", "; });
cout << endl;
}
/**
bm::sparse_vector can also support signed ints.
The container transforms it from complementary code to more
optimal representation so that
*/
static
void Demo2()
{
int arr[3] = {1,-2,3};
sv1.import(arr, 3); // import from a C-style array (fastest way to populate)
// add more at the end
int arr2[5] = {-10, 20, 30, 40, -50};
sv1.import(arr2, 5, sv1.size());
{
sv1.optimize(tb);
}
cout << "sv1.size() = " << sv1.size() << endl;
cout << "sv[]:";
// print using std::for_each plus lambda
std::for_each(sv1.begin(), sv1.end(), [] (auto n) { cout << n << ", "; }
);
cout << endl;
}
int main(void)
{
try
{
// Demo1 for unsigned int
Demo1();
cout << endl << endl;
// Demo2 for signed int
Demo2();
}
catch(std::exception& ex)
{
std::cerr << ex.what() << std::endl;
return 1;
}
return 0;
}
Compressed bit-vector bvector<> container, set algebraic methods, traversal iterators.
#define BM_DECLARE_TEMP_BLOCK(x)
Definition: bm.h:47
Sparse constainer sparse_vector<> for integer types using bit-transposition transform.
pre-processor un-defines to avoid global space pollution (internal)
succinct sparse vector with runtime compression using bit-slicing / transposition method
Definition: bmsparsevec.h:87
value_type at(size_type idx) const
access specified element with bounds checking
Definition: bmsparsevec.h:1730
size_type size() const BMNOEXCEPT
return size of the vector
Definition: bmsparsevec.h:711
const_iterator end() const BMNOEXCEPT
Provide const iterator access to the end
Definition: bmsparsevec.h:559
const_iterator begin() const BMNOEXCEPT
Provide const iterator access to container content
Definition: bmsparsevec.h:2256
void import(const value_type *arr, size_type arr_size, size_type offset=0, bool set_not_null=true)
Import list of elements from a C-style array.
Definition: bmsparsevec.h:1154
void optimize(bm::word_t *temp_block=0, typename bvector_type::optmode opt_mode=bvector_type::opt_compress, typename sparse_vector< Val, BV >::statistics *stat=0)
run memory optimization for all vector planes
Definition: bmsparsevec.h:2094
static void Demo1()
bm::sparse_vector for unsigned int data
Definition: svsample01.cpp:53
bm::sparse_vector< unsigned, bm::bvector<> > sparse_vector_u32
Definition: svsample01.cpp:46
int main(void)
Definition: svsample01.cpp:121
bm::sparse_vector< int, bm::bvector<> > sparse_vector_i32
Definition: svsample01.cpp:47
static void Demo2()
bm::sparse_vector can also support signed ints.
Definition: svsample01.cpp:96