-
Notifications
You must be signed in to change notification settings - Fork 0
/
Complex.cpp
156 lines (137 loc) ยท 4.4 KB
/
Complex.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
#include "Complex.hpp"
#include "Computer.hpp"
const char* Complex::NegativePowerException::what() const throw()
{
return "BAD";
}
Complex::Complex()
{
this->_type = COMPLEX;
this->_real = Rational("0");
this->_imag = Rational("0");
}
Complex::Complex(Rational real, Rational imag) : _real(real), _imag(imag)
{
this->_type = COMPLEX;
}
Complex::Complex(Complex const &src)
{
*this = src;
}
Complex::~Complex()
{
}
bool Complex::operator==(Complex const &rhs)
{
if (this->_real != rhs._real)
return false;
if (this->_imag != rhs._imag)
return false;
return true;
}
Complex& Complex::operator=(Complex const &rhs)
{
this->Symbol::_type = rhs.Symbol::_type;
this->_real = rhs._real;
this->_imag = rhs._imag;
return *this;
}
Complex Complex::operator+(Complex const &rhs)
{
return Complex(this->_real + rhs._real, this->_imag + rhs._imag);
}
Complex Complex::operator-(Complex const &rhs)
{
return Complex(this->_real - rhs._real, this->_imag - rhs._imag);
}
Complex Complex::operator*(Complex const &rhs)
{
return Complex(this->_real * rhs._real - this->_imag * rhs._imag,
this->_real * rhs._imag + this->_imag * rhs._real);
}
Complex Complex::operator/(Complex const &rhs)
{
Rational norm(Rational(rhs._real) * Rational(rhs._real) + Rational(rhs._imag) * Rational(rhs._imag));
Complex result;
Complex conjugate(rhs._real, Rational(rhs._imag) * Rational("-1"));
result = (*this) * conjugate;
result = result / norm;
return result;
}
Complex Complex::operator+(Rational const &rhs)
{
return Complex(this->_real + rhs, this->_imag);
}
Complex Complex::operator-(Rational const &rhs)
{
return Complex(this->_real - rhs, this->_imag);
}
Complex Complex::operator*(Rational const &rhs)
{
return Complex(this->_real * rhs, this->_imag * rhs);
}
Complex Complex::operator/(Rational const &rhs)
{
return Complex(this->_real / rhs, this->_imag / rhs);
}
Complex Complex::operator^(Number power)
{
if (Number("0") > power)
throw NegativePowerException();
Complex res(Rational("1"), Rational("0"));
Complex tmp(*this);
while (power > Number("0"))
{
if ((power.getValue()[power.getValue().length() - 1] - '0') % 2 == 1)
res = res * tmp;
tmp = tmp * tmp;
power = power / Number("2");
}
return Complex(res);
}
Rational Complex::getReal() const
{
return this->_real;
}
Rational Complex::getImag() const
{
return this->_imag;
}
string Complex::approximation() const
{
if (Number("0") == this->_imag.getNumerator())
return this->_real.approximation();
if (Number("0") == this->_real.getNumerator())
{
if (Rational(this->_imag) == Rational("1"))
return Computer::init().convert.to_bytes(L"๐พ");
if (Rational(this->_imag) == Rational("-1"))
return "-" + Computer::init().convert.to_bytes(L"๐พ");
return this->_imag.approximation() + Computer::init().convert.to_bytes(L"๐พ");
}
if (Rational(this->_imag) == Rational("1"))
return this->_real.approximation() + " + " + Computer::init().convert.to_bytes(L"๐พ");
if (Rational(this->_imag) == Rational("-1"))
return this->getReal().approximation() + " - " + Computer::init().convert.to_bytes(L"๐พ");
if (Rational("0") > this->_imag)
return this->_real.approximation() + " - " + this->_imag.abs().approximation() + Computer::init().convert.to_bytes(L"๐พ");
return this->_real.approximation() + " + " + this->_imag.abs().approximation() + Computer::init().convert.to_bytes(L"๐พ");
}
ostream &operator<<(ostream &o, Complex const &rhs)
{
if (Number("0") == rhs.getImag().getNumerator())
o << rhs.getReal();
else if (Number("0") == rhs.getReal().getNumerator())
{
o << rhs.getImag() << Computer::init().convert.to_bytes(L"๐พ");
}
else if (Rational(rhs.getImag()) == Rational("1"))
o << rhs.getReal() << " + " << Computer::init().convert.to_bytes(L"๐พ");
else if (Rational(rhs.getImag()) == Rational("-1"))
o << rhs.getReal() << " - " << Computer::init().convert.to_bytes(L"๐พ");
else if (Rational("0") > rhs.getImag())
o << rhs.getReal() << " - " << rhs.getImag().abs() << Computer::init().convert.to_bytes(L"๐พ");
else
o << rhs.getReal() << " + " << rhs.getImag() << Computer::init().convert.to_bytes(L"๐พ");
return o;
}