Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Битовые поля #15

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added photo_2024-10-16_19-43-09.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
189 changes: 189 additions & 0 deletions tbitfield.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,189 @@
// ННГУ, ВМК, Курс "Методы программирования-2", С++, ООП
//
// tbitfield.cpp - Copyright (c) Гергель В.П. 07.05.2001
// Переработано для Microsoft Visual Studio 2008 Сысоевым А.В. (19.04.2015)
//
// Битовое поле

#include "tbitfield.h"

#define BITS_IN_ONE_MEM (sizeof(TELEM) * 8)

//len = 5
//5+31=36
//36/32 = 1,....
//
//len = 32
//(32+31)/32= 1
//
//len = 64
//(64+31)/32 = 2

TBitField::TBitField(int len) :BitLen(len)
{
if (len <= 0)
throw "Invalid value entered";
int size = (len + BITS_IN_ONE_MEM - 1) / (BITS_IN_ONE_MEM); // количество бит в поле
MemLen = size; // количество блоков
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()
{
delete pMem;
}

int TBitField::GetMemIndex(const int n) const // индекс Мем для бита n
{
//int Nfield = n / 32; // в каком из полей (блоков поля) находится элемент
if ((n < 0)||(n>=BitLen))
throw "Invalid index for bit index";
return n / (BITS_IN_ONE_MEM); // какой блок
}

TELEM TBitField::GetMemMask(const int n) const // битовая маска для бита n
{
if ((n < 0) || (n >= BitLen))
throw "Invalid index for mask";
return (TELEM)1 << (n % (BITS_IN_ONE_MEM));
}

// доступ к битам битового поля

int TBitField::GetLength(void) const // получить длину (к-во битов)
{
return BitLen;
}

void TBitField::SetBit(const int n) // установить бит
{
if ((n < 0) || (n >= BitLen))
throw "Invalid index was entered";
pMem[GetMemIndex(n)] = pMem[GetMemIndex(n)] | GetMemMask(n);
}

void TBitField::ClrBit(const int n) // очистить бит
{
if ((n < 0) || (n >= BitLen))
throw "Invalid index was entered";
pMem[GetMemIndex(n)] = pMem[GetMemIndex(n)] & ~(GetMemMask(n));
}

int TBitField::GetBit(const int n) const // получить значение бита
{
if ((n < 0) || (n >= BitLen))
throw "Invalid index was entered";
return ((pMem[GetMemIndex(n)] & GetMemMask(n)) != 0);//(1 << (n % 32));
}

// битовые операции

TBitField& TBitField::operator=(const TBitField & bf) // присваивание
{
if (this == &bf) return *this;
BitLen = bf.BitLen;
MemLen = bf.MemLen;
delete pMem;
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 // сравнение
{
if (bf.BitLen != BitLen)
return 0;
for (int i = 0; i < bf.MemLen; i++)
if (pMem[i] != bf.pMem[i])
return 0;
return 1;
}

int TBitField::operator!=(const TBitField & bf) const // сравнение
{
if (bf.BitLen != BitLen)
return 1;
for (int i = 0; i < bf.MemLen; i++)
if (pMem[i] != bf.pMem[i])
return 1;
return 0;
}

TBitField TBitField::operator|(const TBitField & bf) // операция "или"
{
int maxSize = (BitLen > bf.BitLen) ? BitLen : bf.BitLen;
TBitField NewF(maxSize);
for (int i = 0; i < NewF.MemLen; i++)
{
TELEM a = (i < MemLen) ? pMem[i] : 0;
TELEM b = (i < bf.MemLen) ? bf.pMem[i] : 0;
NewF.pMem[i] = a | b;
}
return NewF;
}

TBitField TBitField::operator&(const TBitField & bf) // операция "и"
{
int len = BitLen;
if (bf.BitLen > len) len = bf.BitLen;
TBitField res(len);
for (int i = 0; i < MemLen; i++)
res.pMem[i] = pMem[i];
for (int j = 0; j < MemLen; j++)
res.pMem[j] &= bf.pMem[j];
/*int maxSize = (BitLen > bf.BitLen) ? BitLen : bf.BitLen;
TBitField NewF(maxSize);
for (int i = 0; i < NewF.MemLen; i++)
{
TELEM a = (i < MemLen) ? pMem[i] : (TELEM)0;
TELEM b = (i < bf.MemLen) ? bf.pMem[i] : (TELEM)0;
NewF.pMem[i] = a & b;
}*/
return res;
}


//32-bit
// len = 40
// c 40 to 63
TBitField TBitField::operator~(void) // отрицание
{
TBitField res(BitLen);
for (int i = 1; i < BitLen+1; i++)
{
if (GetBit(BitLen - i))res.ClrBit(BitLen - i);
else res.SetBit(BitLen - i);
}
return res;
}

// ввод/вывод

istream& operator>>(istream & istr, TBitField & bf) // ввод
{
for (int i = 0; i < bf.MemLen; i++) {
istr >> bf.pMem[i];
}
return istr;
}

ostream& operator<<(ostream & ostr, const TBitField & bf) // вывод
{
for (int i = 0; i < bf.MemLen; i++)
{
ostr << bf.pMem[i] << "\t";
}
return ostr;
}
149 changes: 149 additions & 0 deletions tset.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,149 @@
// ННГУ, ВМК, Курс "Методы программирования-2", С++, ООП
//
// tset.cpp - Copyright (c) Гергель В.П. 04.10.2001
// Переработано для Microsoft Visual Studio 2008 Сысоевым А.В. (19.04.2015)
//
// Множество - реализация через битовые поля

#include "tset.h"

TSet::TSet(int mp) : BitField(mp)
{
if (mp < 0)
throw "Invalid power";
MaxPower = mp;
}

// конструктор копирования
TSet::TSet(const TSet& s) : BitField(s.BitField)
{
MaxPower = s.MaxPower;
}

// конструктор преобразования типа
TSet::TSet(const TBitField& bf) : BitField(bf)
{
MaxPower = bf.GetLength();
}

TSet::operator TBitField()
{
return BitField;
}

int TSet::GetMaxPower(void) const // получить макс. к-во эл-тов
{
return MaxPower;
}

int TSet::IsMember(const int Elem) const // элемент множества?
{
if ((Elem < 0) || (Elem > BitField.GetLength()))
throw "Invalid index of Elem";
bool flag = BitField.GetBit(Elem);
return flag;
}

void TSet::InsElem(const int Elem) // включение элемента множества
{
if ((Elem < 0) || (Elem > BitField.GetLength()))
throw "Invalid index of Elem";
BitField.SetBit(Elem);
}

void TSet::DelElem(const int Elem) // исключение элемента множества
{
if ((Elem < 0) || (Elem > BitField.GetLength()))
throw "Invalid index of Elem";
BitField.ClrBit(Elem);
}

// теоретико-множественные операции

TSet& TSet::operator=(const TSet& s) // присваивание
{
if (this == &s) {
return *this;
}
MaxPower = s.MaxPower;
BitField = s.BitField;
}

int TSet::operator==(const TSet& s) const // сравнение
{
if (this == &s)
return 1;
if (MaxPower != s.MaxPower)
return 0;
if (BitField != s.BitField)
return 0;
return 1;
}

int TSet::operator!=(const TSet& s) const // сравнение
{
if (this == &s)
return 0;
if (MaxPower != s.MaxPower)
return 1;
if (BitField != s.BitField)
return 1;
return 0;
}

TSet TSet::operator+(const TSet& s) // объединение
{
TBitField res(MaxPower);
res = BitField | s.BitField;
return res;
}

TSet TSet::operator+(const int Elem) // объединение с элементом
{
TSet res(*this);
res.InsElem(Elem);
return res;
}

TSet TSet::operator-(const int Elem) // разность с элементом
{
TSet res(*this);
res.DelElem(Elem);
return res;
}

TSet TSet::operator*(const TSet& s) // пересечение
{
int maxP = MaxPower;
if (s.MaxPower > maxP)maxP = s.MaxPower;
TSet res(maxP);
res.BitField = BitField & s.BitField;
return res;
}

TSet TSet::operator~(void) // дополнение
{
TSet NewSet(MaxPower);
NewSet.BitField = ~(BitField);
return NewSet;
}

// перегрузка ввода/вывода

istream& operator>>(istream& istr, TSet& s) // ввод
{
for(int i = 0; i < s.MaxPower; i++)
{
istr >> s.BitField;
}
return istr;
}

ostream& operator<<(ostream& ostr, const TSet& s) // вывод
{
for(int i = 0; i < s.MaxPower; i++)
{
ostr << s.BitField << "\t";
}
return ostr;
}