Example of how to use bm::str_sparse_vector<> - succinct container for bit-transposed string collections.
Example of how to use bm::str_sparse_vector<> - succinct container for bit-transposed string collections
#include <iostream>
#include <string>
#include <vector>
using namespace std;
{
try
{
const char* s0 = "asz1234";
std::string str1 = "aqw1234";
std::string str3 = "54z";
std::string str00 = "00";
std::cout <<
"sv size()=" << str_sv.
size() << endl;
{
}
{
const char* s = str_sv[i];
cout << i << ":" << s << endl;
}
cout << "----" << endl;
{
for (; it != it_end; ++it)
{
cout << *it << 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.
#define BM_DECLARE_TEMP_BLOCK(x)
string sparse vector based on bit-transposed matrix
Const iterator to do quick traverse of the sparse vector.
sparse vector for strings with compression using bit transposition method
void erase(size_type idx)
erase the specified element
const_iterator end() const BMNOEXCEPT
Provide const iterator access to the end
void push_back(const StrType &str)
push back a string
bvector_type::size_type size_type
size_type size() const
return size of the vector
void optimize(bm::word_t *temp_block=0, typename bvector_type::optmode opt_mode=bvector_type::opt_compress, typename str_sparse_vector< CharType, BV, MAX_STR_SIZE >::statistics *stat=0)
run memory optimization for all vector plains
void insert(size_type idx, const value_type *str)
insert the specified element
void set(size_type idx, const value_type *str)
set specified element with bounds checking and automatic resize
const_iterator begin() const BMNOEXCEPT
Provide const iterator access to container content
void assign(size_type idx, const StrType &str)
set specified element with bounds checking and automatic resize
bm::str_sparse_vector< char, bvector_type, 32 > str_sv_type