2018-03-09 09:47:53 +01:00
|
|
|
// file main_04_UDEF_e.cpp
|
2018-08-19 18:30:13 +02:00
|
|
|
#include "../../helpers/println.hpp"
|
2018-03-09 09:47:53 +01:00
|
|
|
#include <iostream>
|
|
|
|
|
2018-06-02 10:50:37 +02:00
|
|
|
const int bitsPerOctet = 8;
|
2018-03-09 09:47:53 +01:00
|
|
|
|
|
|
|
struct BinaryOctet {
|
2018-08-29 15:44:59 +02:00
|
|
|
public:
|
2018-06-02 10:50:37 +02:00
|
|
|
bool evenParity; // set to true if number of '1' in bitsAsDigits is even, false otherwise
|
2018-08-29 15:44:59 +02:00
|
|
|
char bitsAsDigits[bitsPerOctet]{}; // bit values as chars
|
2018-06-02 10:50:37 +02:00
|
|
|
BinaryOctet(int x = 0);
|
2018-08-29 15:44:59 +02:00
|
|
|
BinaryOctet& operator=(int const &a);
|
2018-06-02 10:50:37 +02:00
|
|
|
BinaryOctet(const BinaryOctet &) = default;
|
2018-08-29 15:44:59 +02:00
|
|
|
private:
|
|
|
|
BinaryOctet init(int x);
|
2018-03-09 09:47:53 +01:00
|
|
|
};
|
|
|
|
|
2018-08-29 15:44:59 +02:00
|
|
|
BinaryOctet BinaryOctet::init(int x) {
|
|
|
|
int length = static_cast<int>(std::to_string(x).length() * 4);
|
2018-06-02 10:50:37 +02:00
|
|
|
while (x >= 1) {
|
|
|
|
bitsAsDigits[length] = (x % 2 == 0) ? '1' : '0';
|
|
|
|
x = x / 2;
|
|
|
|
length--;
|
|
|
|
}
|
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
for (char c : bitsAsDigits) {
|
|
|
|
if (c == '1') i++;
|
|
|
|
}
|
|
|
|
evenParity = i % 2 == 0;
|
2018-08-29 15:44:59 +02:00
|
|
|
|
|
|
|
return *this;
|
2018-06-02 10:50:37 +02:00
|
|
|
}
|
|
|
|
|
2018-08-29 15:44:59 +02:00
|
|
|
BinaryOctet::BinaryOctet(int x) {
|
|
|
|
init(x);
|
|
|
|
}
|
2018-06-02 10:50:37 +02:00
|
|
|
|
2018-08-29 15:44:59 +02:00
|
|
|
bool operator!=(BinaryOctet a, BinaryOctet b) {
|
|
|
|
if(a.evenParity != b.evenParity) return false;
|
|
|
|
for (int i = 0; i < bitsPerOctet; ++i) {
|
|
|
|
if(a.bitsAsDigits[i] != b.bitsAsDigits[i]) return false;
|
|
|
|
}
|
|
|
|
return true;
|
2018-06-02 10:50:37 +02:00
|
|
|
}
|
|
|
|
|
2018-08-31 14:05:18 +02:00
|
|
|
const BinaryOctet operator--(BinaryOctet &id, int) {
|
|
|
|
|
2018-06-02 10:50:37 +02:00
|
|
|
|
2018-08-29 15:44:59 +02:00
|
|
|
return id;
|
2018-06-02 10:50:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
BinaryOctet operator+(BinaryOctet a, BinaryOctet b) {
|
2018-08-29 15:44:59 +02:00
|
|
|
BinaryOctet result;
|
|
|
|
|
|
|
|
for (int i = 0; i < bitsPerOctet; ++i) {
|
|
|
|
if(a.bitsAsDigits[i] == b.bitsAsDigits[i]) result.bitsAsDigits[i] = '0';
|
|
|
|
else result.bitsAsDigits[i] = '1';
|
|
|
|
}
|
2018-06-02 10:50:37 +02:00
|
|
|
|
2018-08-29 15:44:59 +02:00
|
|
|
return result;
|
2018-06-02 10:50:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
BinaryOctet operator/(BinaryOctet a, BinaryOctet b) {
|
|
|
|
|
2018-03-09 09:47:53 +01:00
|
|
|
}
|
|
|
|
|
2018-08-31 14:05:18 +02:00
|
|
|
BinaryOctet& BinaryOctet::operator=(int const &a) {
|
|
|
|
std::cout << a << std::endl;
|
|
|
|
std::string tmp = to_string(a);
|
|
|
|
for(int i = 0; i < bitsPerOctet; i++) {
|
|
|
|
bitsAsDigits[i] = tmp[i];
|
|
|
|
}
|
2018-08-29 15:44:59 +02:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2018-06-02 10:50:37 +02:00
|
|
|
BinaryOctet doCalculation(BinaryOctet a, BinaryOctet b) {
|
|
|
|
BinaryOctet result;
|
2018-03-09 09:47:53 +01:00
|
|
|
|
2018-06-02 10:50:37 +02:00
|
|
|
for (; a != b; b--) {
|
|
|
|
a = a + 1;
|
|
|
|
a = a / b;
|
|
|
|
}
|
|
|
|
result = a + b;
|
|
|
|
return result;
|
2018-03-09 09:47:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// for println();
|
2018-06-02 10:50:37 +02:00
|
|
|
std::string as_string(BinaryOctet a) {
|
|
|
|
std::string result = "(";
|
|
|
|
for (char c : a.bitsAsDigits) {
|
|
|
|
result += c;
|
|
|
|
}
|
|
|
|
result += ")";
|
|
|
|
return result;
|
2018-03-09 09:47:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// for std::cout
|
2018-08-29 15:44:59 +02:00
|
|
|
std::ostream& operator<< (std::ostream& os, const BinaryOctet &toBePrinted){
|
|
|
|
os << as_string(toBePrinted);
|
2018-03-09 09:47:53 +01:00
|
|
|
return os;
|
2018-08-29 15:44:59 +02:00
|
|
|
}
|
2018-03-09 09:47:53 +01:00
|
|
|
|
2018-06-02 10:50:37 +02:00
|
|
|
int main(int argc, char **argv) {
|
|
|
|
BinaryOctet a = 0b00001111;
|
|
|
|
BinaryOctet b = 0b00000110;
|
2018-08-31 14:05:18 +02:00
|
|
|
std::cout << a << std::endl;
|
|
|
|
BinaryOctet c = 00001111;
|
|
|
|
std::cout << c << std::endl;
|
2018-08-29 15:44:59 +02:00
|
|
|
std::cout << new BinaryOctet(5) << std::endl;
|
|
|
|
println(a + b);
|
|
|
|
std::cout << a + b << std::endl;
|
2018-06-02 10:50:37 +02:00
|
|
|
//println("result = ", doCalculation(a,b));
|
|
|
|
//std::cout << "result = " << doCalculation(a,b) << std::endl;
|
|
|
|
return 0;
|
2018-03-09 09:47:53 +01:00
|
|
|
}
|