forked from UNN-ITMM-Software/mp2-lab1-set
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tbitfield.cpp
196 lines (173 loc) · 4.78 KB
/
tbitfield.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
// ННГУ, ВМК, Курс "Методы программирования-2", С++, ООП
//
// tbitfield.cpp - Copyright (c) Гергель В.П. 07.05.2001
// Переработано для Microsoft Visual Studio 2008 Сысоевым А.В. (19.04.2015)
//
// Битовое поле
#include "tbitfield.h"
// Fake variables used as placeholders in tests
static const int FAKE_INT = -1;
static TBitField FAKE_BITFIELD(1);
TBitField::TBitField(int len)
{
if (len <= 0) throw "len <= 0";
BitLen = len;
if (len % (8 * sizeof(TELEM)) == 0) {
MemLen = len / (8 * sizeof(TELEM));
}
else {
MemLen = len / (8*sizeof(TELEM)) + 1;
}
pMem = new TELEM[MemLen];
for (int i = 0; i < MemLen; i++) {
pMem[i] = 0;
}
}
TBitField::TBitField(const TBitField &bf) // конструктор копирования
{
BitLen = bf.BitLen;
MemLen = bf.MemLen;
pMem = new TELEM[MemLen];
for (int i = 0; i<MemLen; i++) {
pMem[i] = bf.pMem[i];
}
}
TBitField::~TBitField()
{
if (pMem != nullptr) {
delete[]pMem;
pMem = nullptr;
BitLen = 0;
}
}
int TBitField::GetMemIndex(const int n) const // индекс Мем для бита n
{
if (n < 0 || n > BitLen) throw "No correct index";
return (n / (8 * sizeof(TELEM)));
}
TELEM TBitField::GetMemMask(const int n) const // битовая маска для бита n
{
return 1 << (n - sizeof(TELEM) * GetMemIndex(n));
}
// доступ к битам битового поля
int TBitField::GetLength(void) const // получить длину (к-во битов)
{
return BitLen;
}
void TBitField::SetBit(const int n) // установить бит
{
if (n >= 0 && n < BitLen) {
pMem[GetMemIndex(n)] = pMem[GetMemIndex(n)] | GetMemMask(n);
}
else throw " no correct n";
}
void TBitField::ClrBit(const int n) // очистить бит
{
if (n >= 0 && n < BitLen)
pMem[GetMemIndex(n)] = pMem[GetMemIndex(n)] & ~GetMemMask(n);
else throw " no correct n";
}
int TBitField::GetBit(const int n) const // получить значение бита
{
if (n >= 0 && n < BitLen)
return pMem[GetMemIndex(n)] & GetMemMask(n);
else throw " no correct n";
}
// битовые операции
TBitField& TBitField::operator=(const TBitField &bf) // присваивание
{
if (this != &bf) {
delete[] pMem;
BitLen = bf.BitLen;
MemLen = bf.MemLen;
pMem = new TELEM[MemLen];
for (int i = 0; i < MemLen; i++) {
pMem[i] = bf.pMem[i];
}
}
return *this;
}
int TBitField::operator==(const TBitField &bf) const // сравнение
{
int flag = 1;
if (MemLen == bf.MemLen && BitLen == bf.BitLen) {
for (size_t i = 0; i < MemLen; i++) {
if (pMem[i] != bf.pMem[i]) flag = 0;
}
}
else {
flag = 0;
}
return flag;
}
int TBitField::operator!=(const TBitField &bf) const // сравнение
{
int flag = 1;
if (MemLen == bf.MemLen && BitLen == bf.BitLen) {
for (size_t i = 0; i < MemLen; i++) {
if (pMem[i] != bf.pMem[i]) flag = 0;
}
}
else {
flag = 0;
}
if (flag) return 0;
else return 1;
}
TBitField TBitField::operator|(const TBitField &bf) // операция "или"
{
int len = bf.BitLen;
if (BitLen > len) len = BitLen;
TBitField tmp(len);
for (int i = 0; i < MemLen; i++) tmp.pMem[i] = pMem[i];
for (int i = 0; i < bf.MemLen; i++) tmp.pMem[i] = tmp.pMem[i] | bf.pMem[i];
return tmp;
}
TBitField TBitField::operator&(const TBitField &bf) // операция "и"
{
int len;
if (BitLen > bf.BitLen) len = BitLen;
else len = bf.BitLen;
TBitField tmp(len);
int minlen;
if (bf.BitLen < BitLen) minlen = bf.BitLen;
else minlen = BitLen;
for (int i = 0; i < minlen; i++) {
if (GetBit(i) & bf.GetBit(i)) tmp.SetBit(i);
}
return tmp;
}
TBitField TBitField::operator~(void) // отрицание
{
TBitField tmp(BitLen);
for (int i = 0; i < tmp.BitLen; i++) {
if (GetBit(i) == 0) tmp.SetBit(i);
else tmp.ClrBit(i);
}
return tmp;
}
// ввод/вывод
istream &operator>>(istream &istr, TBitField &bf) // ввод
{
string tmp;
istr >> tmp;
if (tmp.size() != bf.GetLength()) {
throw "no correct length";
}
else {
for (int i = 0; i < bf.GetLength(); i++) {
if (tmp[i] == '0') bf.ClrBit(i);
if (tmp[i] == '1') bf.SetBit(i);
else throw "no correct string";
}
}
return istr;
}
ostream &operator<<(ostream &ostr, const TBitField &bf) // вывод
{
for (int i = 0; i < bf.GetLength(); i++) {
if (bf.GetBit(i) == 1) cout << 1;
else cout << 0;
}
return ostr;
}