BitMagic-C++
svsample07.cpp

Example of how to use bm::str_sparse_vector<> - succinct container for sorted bit-transposed collection of integers

See also
bm::sparse_vector
bm::sparse_vector_scanner<>::lower_bound
/*
Copyright(c) 2002-2019 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 svsample07.cpp
Example of how to use bm::str_sparse_vector<> - succinct container for
sorted bit-transposed collection of integers
\sa bm::sparse_vector
\sa bm::sparse_vector_scanner<>::lower_bound
*/
/*! \file svsample07.cpp
\brief Example: sparse_vector<> lower bound search
*/
#include <iostream>
#include <vector>
#include <chrono>
#include <algorithm>
#include <random>
#include <algorithm>
#include <stdexcept>
#include "bm.h"
#include "bmsparsevec.h"
#include "bmundef.h" /* clear the pre-proc defines from BM */
using namespace std;
// generate collection of strings from integers and shuffle it
//
static
void generate_set(vector<unsigned>& vec)
{
const unsigned max_coll = 50000;
vec.resize(0);
for (unsigned i = 10; i < max_coll; i += rand() % 3)
{
vec.emplace_back(i);
} // for i
// shuffle the data set
//
std::random_device rd;
std::mt19937 g(rd());
std::shuffle(vec.begin(), vec.end(), g);
}
// insertion sort takes data from unsorted vector places it into sparse vector
// maintaining correct sorted order (for fast search)
//
static
void insertion_sort(sparse_vector_u32& sv, const vector<unsigned>& vec)
{
// scanner object is re-used throught the processing
//
for (const unsigned u : vec)
{
bool found = scanner.bfind(sv, u, pos);
(void)found; // just to silence the unused variable warning
sv.insert(pos, u);
} // for u
}
int main(void)
{
try
{
vector<unsigned> vec;
insertion_sort(sv, vec);
sv.optimize(); // mmemory optimization after active editing
// validate the results to match STL sort
std::sort(vec.begin(), vec.end());
{
vector<unsigned>::const_iterator vit = vec.begin();
for (; it != it_end; ++it, ++vit)
{
unsigned u = *it;
if (*vit != u)
{
cerr << "Mismatch at:" << u << "!=" << *vit << endl;
return 1;
}
} // for
}
cout << "Sort validation Ok." << endl;
}
catch(std::exception& ex)
{
std::cerr << ex.what() << std::endl;
return 1;
}
return 0;
}
Compressed bit-vector bvector<> container, set algebraic methods, traversal iterators.
Sparse constainer sparse_vector<> for integer types using bit-transposition transform.
Algorithms for bm::sparse_vector.
pre-processor un-defines to avoid global space pollution (internal)
algorithms for sparse_vector scan/search
bool bfind(const SV &sv, const value_type val, size_type &pos)
binary search for position in the sorted sparse vector
succinct sparse vector with runtime compression using bit-slicing / transposition method
Definition: bmsparsevec.h:87
const_iterator end() const BMNOEXCEPT
Provide const iterator access to the end
Definition: bmsparsevec.h:559
void insert(size_type idx, value_type v)
insert specified element into container
Definition: bmsparsevec.h:1860
const_iterator begin() const BMNOEXCEPT
Provide const iterator access to container content
Definition: bmsparsevec.h:2256
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 insertion_sort(sparse_vector_u32 &sv, const vector< unsigned > &vec)
Definition: svsample07.cpp:72
bm::sparse_vector< bm::id_t, bm::bvector<> > sparse_vector_u32
Definition: svsample07.cpp:46
static void generate_set(vector< unsigned > &vec)
Definition: svsample07.cpp:51
int main(void)
Definition: svsample07.cpp:90