BitMagic-C++
strsvsample01.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 strsvsample01.cpp
20 Example of how to use bm::str_sparse_vector<> - succinct container for
21 bit-transposed string collections
22
23 \sa bm::str_sparse_vector
24*/
25
26/*! \file strsvsample01.cpp
27 \brief Example: str_sparse_vector<> set values, optimize memory
28*/
29
30#include <iostream>
31#include <string>
32#include <vector>
33#include <cassert>
34
35#include "bm.h"
36#include "bmstrsparsevec.h"
37#include "bmundef.h" /* clear the pre-proc defines from BM */
38
39using namespace std;
40
42
43// define the sparse vector type for 'char' type using bvector as
44// a container of bits for bit-transposed planes
45// 32 - is maximum string length for this container.
46// Memory allocation is dynamic using sparse techniques, so this number
47// just defines the max capacity.
48//
50
51int main(void)
52{
53 try
54 {
55 str_sv_type str_sv;
56
57 const char* s0 = "asz1234";
58 std::string str1 = "aqw1234";
59 std::string str3 = "54z";
60 std::string str00 = "00";
61
62 str_sv.set(0, s0); // set a C-string
63 str_sv.push_back(str1); // add from an STL string
64
65 str_sv.assign(3, str3); // assign element 3 from an STL string
66
67 // please note that container automatically resizes
68 std::cout << "sv size()=" << str_sv.size() << endl; // 4
69
70 str_sv.insert(0, str00); // insert element
71
72 str_sv.erase(0); // erase element 0
73
74
75 // optimize runs compression in all bit-plains
76 {
78 str_sv.optimize(tb);
79 }
80
81 // print out the container content using [] reference
82 //
83 for (str_sv_type::size_type i = 0; i < str_sv.size(); ++i)
84 {
85 const char* s = str_sv[i];
86 cout << i << ":" << s << endl;
87 } // for i
88 cout << "----" << endl;
89
90 // print content using const_iterator
91 //
92 // const iterator has a bulk implementation,
93 // not like random access const_iterator is transposing a whole set
94 // of elements at once, it is faster for bulk traverse
95 //
96 {
98 str_sv_type::const_iterator it_end = str_sv.end();
99 for (; it != it_end; ++it)
100 {
101 cout << *it << endl;
102 } // for it
103 }
104
105 // ---------------------------------------------
106
107 str_sv_type str_sv2(bm::use_null); // NULL-able string vector
108
109 str_sv2.set(1, "s1");
110 str_sv2.push_back("s2");
111 str_sv2.push_back_null();
112 str_sv2.push_back("s3");
113
114 std::string s;
115 bool found = str_sv2.try_get(0, s); // FALSE (NULL value)
116 assert(!found); (void)found;
117 found = str_sv2.try_get(2, s); // TRUE, "s2"
118 assert(found);
119 std::cout << s << std::endl;
120
121 // print out vector content with NULL check
122 {
123 str_sv_type::const_iterator it = str_sv2.begin();
124 it.go_to(1); // position to idx=1, skipping the element 0
125 for (; it.valid(); ++it)
126 {
127 if (it.is_null())
128 cout << "NULL, ";
129 else
130 cout << *it << ", ";
131 } // for it.valid()
132 cout << endl;
133 }
134 }
135 catch(std::exception& ex)
136 {
137 std::cerr << ex.what() << std::endl;
138 return 1;
139 }
140
141
142 return 0;
143}
144
Compressed bit-vector bvector<> container, set algebraic methods, traversal iterators.
#define BM_DECLARE_TEMP_BLOCK(x)
Definition: bm.h:47
string sparse vector based on bit-transposed matrix
pre-processor un-defines to avoid global space pollution (internal)
Bitvector Bit-vector container with runtime compression of bits.
Definition: bm.h:115
Const iterator to do quick traverse of the sparse vector.
bool is_null() const BMNOEXCEPT
Get NULL status.
void go_to(size_type pos) BMNOEXCEPT
re-position to a specified position
bool valid() const BMNOEXCEPT
Returns true if iterator is at a valid position.
succinct sparse vector for strings with compression using bit-slicing ( transposition) method
void insert(size_type idx, const value_type *str)
insert the specified element
const_iterator end() const BMNOEXCEPT
Provide const iterator access to the end
void optimize(bm::word_t *temp_block=0, typename bvector_type::optmode opt_mode=bvector_type::opt_compress, typename str_sparse_vector< CharType, BV, STR_SIZE >::statistics *stat=0)
run memory optimization for all vector planes
void assign(size_type idx, const StrType &str)
set specified element with bounds checking and automatic resize
size_type size() const
return size of the vector
const_iterator begin() const BMNOEXCEPT
Provide const iterator access to container content
void push_back(const StrType &str)
push back a string
bool try_get(size_type idx, StrType &str) const
get specified string element if NOT NULL Template method expects an STL-compatible type basic_string<...
void erase(size_type idx)
erase the specified element
void push_back_null(size_type count)
push back specified amount of NULL values
void set(size_type idx, const value_type *str)
set specified element with bounds checking and automatic resize
bvector_type::size_type size_type
@ use_null
support "non-assigned" or "NULL" logic
Definition: bmconst.h:229
bm::str_sparse_vector< char, bvector_type, 32 > str_sv_type
bm::bvector bvector_type
int main(void)