-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBits.h
68 lines (56 loc) · 1.38 KB
/
Bits.h
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
//
// Created by Development Environment on 4/29/19.
//
#ifndef NULL
#define NULL 0
#endif // !NULL
// offset for byte
#ifndef __BYTEOFFSET
#define __BYTEOFFSET 8
#endif // !__BYTEOFFSET
// masks to extract bit k
#ifndef __BITMASKS
#define __BITMASKS
#define __SETBIT0MASK 0x01
#define __SETBIT1MASK 0x02
#define __SETBIT2MASK 0x04
#define __SETBIT3MASK 0x08
#define __SETBIT4MASK 0x10
#define __SETBIT5MASK 0x20
#define __SETBIT6MASK 0x40
#define __SETBIT7MASK 0x80
#define __RESETBIT0MASK ~__SETBIT0MASK
#define __RESETBIT1MASK ~__SETBIT1MASK
#define __RESETBIT2MASK ~__SETBIT2MASK
#define __RESETBIT3MASK ~__SETBIT3MASK
#define __RESETBIT4MASK ~__SETBIT4MASK
#define __RESETBIT5MASK ~__SETBIT5MASK
#define __RESETBIT6MASK ~__SETBIT6MASK
#define __RESETBIT7MASK ~__SETBIT7MASK
#endif // !__BITMASKS
#ifndef __BITSET_T
#define __BITSET_T
#include <string>
using namespace std;
class Bitset
{
private:
int capacity;
int size;
int bitsPerRow;
char * set;
bool testBit(int i, int j);
int countChars(string s_fileName);
void setBit(int i, int j, int val);
public:
Bitset(string s_fileName, int size); //
Bitset(Bitset &other);
~Bitset();
bool allSame();
void setBit(int i, int j, bool b_val);
void writeToFile(string s_fileName);
friend ostream& operator<<(ostream&, Bitset*);
int operator()(int i, int j);
int operator[](int i);
};
#endif