forked from UNN-ITMM-Software/mp2-lab1-set
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tbitfield.cpp
190 lines (156 loc) · 3.9 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
// ННГУ, ВМК, Курс "Методы программирования-2", С++, ООП
//
// tbitfield.cpp - Copyright (c) Гергель В.П. 07.05.2001
// Переработано для Microsoft Visual Studio 2008 Сысоевым А.В. (19.04.2015)
//
// Битовое поле
#include "tbitfield.h"
#include <stdexcept>
#include <algorithm>
#include <limits>
static constexpr size_t maxElem = numeric_limits<elem_t>::max();
static constexpr size_t bitsInElem = numeric_limits<elem_t>::digits;
TBitField::TBitField(size_t len)
: bitLen(len), memLen((len / bitsInElem) + ((len % bitsInElem) != 0))
{
pMem = new elem_t[memLen]();
}
TBitField::TBitField(const TBitField &bf)
: bitLen(bf.bitLen), memLen(bf.memLen)
{
pMem = new elem_t[memLen];
copy(bf.pMem, bf.pMem + bf.memLen, pMem);
}
TBitField::~TBitField()
{
delete[] pMem;
}
size_t TBitField::GetMemIndex(const size_t n) const // индекс Мем для бита n
{
return n / bitsInElem;
}
elem_t TBitField::GetMemMask(const size_t n) const // битовая маска для бита n
{
//return 1 << (n % bitsInElem);
return 1 << (n & (bitsInElem - 1));
}
inline void TBitField::verify_index(const size_t n) const
{
if (n >= bitLen)
{
throw out_of_range("bit index is out of range");
}
}
// доступ к битам битового поля
size_t TBitField::GetLength(void) const // получить длину (к-во битов)
{
return bitLen;
}
void TBitField::SetBit(const size_t n) // установить бит
{
verify_index(n);
pMem[GetMemIndex(n)] |= GetMemMask(n);
}
void TBitField::ClrBit(const size_t n) // очистить бит
{
verify_index(n);
pMem[GetMemIndex(n)] &= ~GetMemMask(n);
}
bool TBitField::GetBit(const size_t n) const // получить значение бита
{
verify_index(n);
return pMem[GetMemIndex(n)] & GetMemMask(n);
}
// битовые операции
TBitField &TBitField::operator=(const TBitField &bf) // присваивание
{
if (this == &bf)
{
return *this;
}
TBitField tmp(bf);
swap(*this, tmp);
return *this;
}
bool TBitField::operator==(const TBitField &bf) const noexcept // сравнение
{
if (bitLen != bf.bitLen)
{
return false;
}
for (size_t i = 0; i < memLen; i++)
{
if (pMem[i] != bf.pMem[i])
{
return false;
}
}
return true;
}
bool TBitField::operator!=(const TBitField &bf) const noexcept // сравнение
{
return !(*this == bf);
}
TBitField TBitField::operator|(const TBitField &bf) // операция "или"
{
const bool lhs_larger = bitLen > bf.bitLen;
const TBitField* rhs = lhs_larger ? &bf : this;
TBitField res(lhs_larger ? *this : bf);
for (size_t i = 0; i < res.memLen; i++)
{
res.pMem[i] |= rhs->pMem[i];
}
return res;
}
TBitField TBitField::operator&(const TBitField &bf) // операция "и"
{
TBitField res(max(bitLen, bf.bitLen));
const size_t minmem = min(memLen, bf.memLen);
for (size_t i = 0; i < minmem; i++)
{
res.pMem[i] = pMem[i] & bf.pMem[i];
}
return res;
}
TBitField TBitField::operator~(void) // отрицание
{
TBitField res(bitLen);
for (size_t i = 0; i < memLen - 1; i++)
{
res.pMem[i] = ~pMem[i];
}
res.pMem[memLen - 1] = pMem[memLen - 1] ^ (maxElem >> (bitsInElem - (bitLen & (bitsInElem - 1))));
return res;
}
// ввод/вывод
void swap(TBitField &lhs, TBitField &rhs)
{
swap(lhs.bitLen, rhs.bitLen);
swap(lhs.memLen, rhs.memLen);
swap(lhs.pMem, rhs.pMem);
}
istream &operator>>(istream &istr, TBitField &bf) // ввод
{
char c;
for (size_t i = 0; i < bf.bitLen; i++)
{
istr >> c;
if (c == '0')
{
bf.ClrBit(i);
}
else
{
bf.SetBit(i);
}
}
return istr;
}
ostream &operator<<(ostream &ostr, const TBitField &bf) // вывод
{
for (size_t i = 0; i < bf.bitLen; i++)
{
ostr << bf.GetBit(i) ? '1' : '0';
}
return ostr;
}