-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample.cpp
429 lines (373 loc) · 10.2 KB
/
sample.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
/***************************************************************************
* Bit Array Class Usage Sample
*
* File : sample.cpp
* Purpose : Demonstrates usage of bit array class.
* Author : Michael Dipperstein
* Date : July 23, 2004
*
****************************************************************************
* HISTORY
*
* $Id: sample.cpp,v 1.6 2010/02/04 03:31:43 michael Exp $
* $Log: sample.cpp,v $
* Revision 1.6 2010/02/04 03:31:43 michael
* Replaced vector<unsigned char> with an array of unsigned char.
*
* Made updates for GCC 4.4.
*
* Revision 1.4 2007/08/06 05:21:00 michael
* Updated for LGPL Version 3.
* Verifies new >> and << functions.
* Corrects printed comment for setting bits by array index.
*
* Revision 1.2 2004/08/05 22:17:31 michael
* Test new methods.
*
* Revision 1.1.1.1 2004/08/04 13:28:20 michael
* bit_array_c
*
****************************************************************************
*
* Sample: A bit array class sample usage program
* Copyright (C) 2004, 2006-2007, 2010 by
* Michael Dipperstein ([email protected])
*
* This file is part of the bit array library.
*
* The bit array library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 3 of the
* License, or (at your option) any later version.
*
* The bit array library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
* General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
***************************************************************************/
#include <iostream>
#include <cstdlib>
#include <climits>
#include "bitarray.h"
using namespace std;
/***************************************************************************
* MACROS
***************************************************************************/
#define NUM_BITS 128 /* size of bit array */
/***************************************************************************
* FUNCTIONS
***************************************************************************/
/***************************************************************************
* Function : ShowArray
* Description: This is a wrapper for bit_array_t::Dump that shows the
* array name as well as its contents.
* Parameters : name - name of array
* ba - pointer to bit array
* Effects : Writes array to stdout.
* Returned : None
***************************************************************************/
void ShowArray(const char *name, bit_array_c *ba)
{
cout << name << ": ";
ba->Dump(cout);
cout << endl;
}
/***************************************************************************
* Function : main
* Description: This function demonstrates the usage of each of the bit
* array method.
* Parameters : argc - the number command line arguements (not used)
* Parameters : argv - array of command line arguements (not used)
* Effects : Writes results of bit operations to stdout.
* Returned : EXIT_SUCCESS
***************************************************************************/
int main(int argc, char *argv[])
{
bit_array_c ba1(NUM_BITS), ba2(NUM_BITS);
int i;
cout << "ba1 has " << ba1.Size() << " bits" << endl;
cout << "ba2 has " << ba2.Size() << " bits" << endl << endl;
cout << "set all bits in ba1" << endl;
ba1.SetAll();
ShowArray("ba1", &ba1);
cout << endl << "clear all bits in ba1" << endl;
ba1.ClearAll();
ShowArray("ba1", &ba1);
cout << endl << "set 8 bits on each end of ba1 from the outside in" << endl;
for (i = 0; i < 8; i++)
{
ba1.SetBit(i);
ba1.SetBit(NUM_BITS - i - 1);
ShowArray("ba1", &ba1);
}
cout << endl << "ba2 = ba1" << endl;
ba2 = ba1;
ShowArray("ba2", &ba2);
cout << endl << "ba2 = ~(ba2)" << endl;
ba2.Not();
ShowArray("ba2", &ba2);
cout << endl << "ba2 |= ba1" << endl;
ba2 |= ba1;
ShowArray("ba2", &ba2);
cout << endl << "ba2 ^= ba1" << endl;
ba2 ^= ba1;
ShowArray("ba2", &ba2);
cout << endl << "ba2 &= ba1" << endl;
ba2 &= ba1;
ShowArray("ba2", &ba2);
cout << endl << "testing some bits in ba1" << endl;
for (; i > 6; i--)
{
if(ba1[i])
{
cout << "ba1 bit " << i << " is set." << endl;
}
else
{
cout << "ba1 bit " << i << " is clear." << endl;
}
if(ba1[NUM_BITS - i - 1])
{
cout << "ba1 bit " << NUM_BITS - i - 1 << " is set." << endl;
}
else
{
cout << "ba1 bit " << NUM_BITS - i - 1 << " is clear." << endl;
}
}
cout << endl << "clear 8 bits on each end of ba1 from the outside in" << endl;
for (i = 0; i < 8; i++)
{
ba1.ClearBit(i);
ba1.ClearBit(NUM_BITS - i - 1);
ShowArray("ba1", &ba1);
}
cout << endl << "set all bits in ba1 and shift right by 20" << endl;
ba1.SetAll();
ba1 >>= 20;
ShowArray("ba1", &ba1);
cout << endl << "shift ba1 left by 20" << endl;
ba1 <<= 20;
ShowArray("ba1", &ba1);
cout << endl << "set all bits in ba1 and increment" << endl;
ba1.SetAll();
++ba1;
ShowArray("ba1", &ba1);
cout << endl << "increment ba1" << endl;
ba1++;
ShowArray("ba1", &ba1);
cout << endl << "increment ba1" << endl;
++ba1;
ShowArray("ba1", &ba1);
cout << endl << "decrement ba1" << endl;
--ba1;
ShowArray("ba1", &ba1);
cout << endl << "decrement ba1" << endl;
ba1--;
ShowArray("ba1", &ba1);
cout << endl << "decrement ba1" << endl;
--ba1;
ShowArray("ba1", &ba1);
/* == */
cout << endl << "check ba1 == ba1" << endl;
if (ba1 == ba1)
{
cout << "ba1 == ba1" << endl;
}
else
{
cout << "ba1 != ba1" << endl;
}
cout << endl << "check ba1 == ba2" << endl;
if (ba1 == ba2)
{
cout << "ba1 == ba2" << endl;
}
else
{
cout << "ba1 != ba2" << endl;
}
/* != */
cout << endl << "check ba1 != ba1" << endl;
if (ba1 != ba1)
{
cout << "ba1 != ba1" << endl;
}
else
{
cout << "ba1 == ba1" << endl;
}
cout << endl << "check ba1 != ba2" << endl;
if (ba1 != ba2)
{
cout << "ba1 != ba2" << endl;
}
else
{
cout << "Comparison error." << endl;
}
/* < */
cout << endl << "check ba1 < ba1" << endl;
if (ba1 < ba1)
{
cout << "ba1 < ba1" << endl;
}
else
{
cout << "ba1 >= ba1" << endl;
}
cout << endl << "check ba1 < ba2" << endl;
if (ba1 < ba2)
{
cout << "ba1 < ba2" << endl;
}
else
{
cout << "ba1 >= ba2" << endl;
}
cout << endl << "check ba2 < ba1" << endl;
if (ba2 < ba1)
{
cout << "ba2 < ba1" << endl;
}
else
{
cout << "ba2 >= ba1" << endl;
}
/* <= */
cout << endl << "check ba1 <= ba1" << endl;
if (ba1 <= ba1)
{
cout << "ba1 <= ba1" << endl;
}
else
{
cout << "ba1 > ba1" << endl;
}
cout << endl << "check ba1 <= ba2" << endl;
if (ba1 <= ba2)
{
cout << "ba1 <= ba2" << endl;
}
else
{
cout << "ba1 > ba2" << endl;
}
cout << endl << "check ba2 <= ba1" << endl;
if (ba2 < ba1)
{
cout << "ba2 <= ba1" << endl;
}
else
{
cout << "ba2 > ba1" << endl;
}
/* > */
cout << endl << "check ba1 > ba1" << endl;
if (ba1 > ba1)
{
cout << "ba1 > ba1" << endl;
}
else
{
cout << "ba1 <= ba1" << endl;
}
cout << endl << "check ba1 > ba2" << endl;
if (ba1 > ba2)
{
cout << "ba1 > ba2" << endl;
}
else
{
cout << "ba1 <= ba2" << endl;
}
cout << endl << "check ba2 > ba1" << endl;
if (ba2 > ba1)
{
cout << "ba2 > ba1" << endl;
}
else
{
cout << "ba2 <= ba1" << endl;
}
/* >= */
cout << endl << "check ba1 >= ba1" << endl;
if (ba1 >= ba1)
{
cout << "ba1 >= ba1" << endl;
}
else
{
cout << "ba1 < ba1" << endl;
}
cout << endl << "check ba1 >= ba2" << endl;
if (ba1 >= ba2)
{
cout << "ba1 >= ba2" << endl;
}
else
{
cout << "ba1 < ba2" << endl;
}
cout << endl << "check ba2 >= ba1" << endl;
if (ba2 >= ba1)
{
cout << "ba2 >= ba1" << endl;
}
else
{
cout << "ba2 < ba1" << endl;
}
/* test construction from existing: create an array, fill it with values */
unsigned char* vect;
vect = new unsigned char[(NUM_BITS / CHAR_BIT)];
vect[0] = 0x00;
for (i = 1; i < NUM_BITS / CHAR_BIT; i++)
{
vect[i] = vect[i -1] + 0x11;
}
cout << endl << "construct a bit array from existing array" << endl;
bit_array_c ba3(vect, NUM_BITS);
ShowArray("ba3", &ba3);
cout << endl << "ba3 = ~(ba3)" << endl;
ba3 = ~ba3;
ShowArray("ba3", &ba3);
ba1.SetAll();
for (i = 0; i < NUM_BITS; i += 2)
{
ba2.SetBit(i);
if (i < NUM_BITS - 1)
{
ba2.ClearBit(i + 1);
}
}
cout << endl;
ShowArray("ba1", &ba1);
ShowArray("ba2", &ba2);
cout << endl << "ba3 = ba1 | ba2" << endl;
ba3 = ba1 | ba2;
ShowArray("ba3", &ba3);
cout << endl << "ba3 = ba1 ^ ba2" << endl;
ba3 = ba1 ^ ba2;
ShowArray("ba3", &ba3);
cout << endl << "ba3 = ba1 & ba2" << endl;
ba3 = ba1 & ba2;
ShowArray("ba3", &ba3);
cout << endl << "ba3 = ba2 >> 1" << endl;
ba3 = ba2 >> 1;
ShowArray("ba3", &ba3);
cout << endl << "ba3 = ba1 << 1" << endl;
ba3 = ba1 << 1;
ShowArray("ba3", &ba3);
cout << endl << "ba3(0) .. ba3(7) = false" << endl;
for(i = 0; i < 8; i++)
{
ba3(i) = false;
ShowArray("ba3", &ba3);
}
return(EXIT_SUCCESS);
}