-
Notifications
You must be signed in to change notification settings - Fork 0
/
Expression.cs
159 lines (151 loc) · 4.86 KB
/
Expression.cs
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
class Expression
{
float constant;
float coefficient;
char variable;
float exponent;
// coefficient(variable) + constant
public Expression(char variable, float coefficient = 1, float exponent = 1, float constant = 0)
{
this.coefficient = coefficient;
this.constant = constant;
this.variable = variable;
this.exponent = exponent;
}
public Expression()
{
this.coefficient = 0;
this.constant = 0;
this.variable = 'x';
this.exponent = 1;
}
public Expression(float constant)
{
this.coefficient = 0;
this.constant = constant;
this.variable = 'x';
this.exponent = 1;
}
public static Expression operator +(Expression a, float b)
{
return new Expression(a.variable, a.coefficient, a.exponent, (a.constant + b));
}
public static Expression operator *(Expression a, float b)
{
return new Expression(a.variable, (a.coefficient * b), a.exponent, (a.constant * b));
}
public static Expression operator +(Expression a, Expression b)
{
if (a.variable == b.variable && a.exponent == b.exponent)
{
return new Expression(a.variable, a.coefficient + b.coefficient, a.exponent, a.constant + b.constant);
}
else if (a.coefficient == 0 && b.coefficient != 0)
{
return new Expression(b.variable, b.coefficient, b.exponent, a.constant + b.constant);
}
else if (a.coefficient != 0 && b.coefficient == 0)
{
return new Expression(a.variable, a.coefficient, a.exponent, a.constant + b.constant);
}
else if (a.coefficient == 0 && b.coefficient == 0)
{
return new Expression(a.constant + b.constant);
}
else
{
throw new InvalidOperationException("Variables or exponents do not match");
}
}
public static Expression operator -(Expression a, Expression b)
{
if (a.variable == b.variable && a.exponent == b.exponent)
{
return new Expression(a.variable, a.coefficient - b.coefficient, a.exponent, a.constant - b.constant);
}
else if (a.coefficient == 0 && b.coefficient != 0)
{
return new Expression(b.variable, b.coefficient, b.exponent, a.constant - b.constant);
}
else if (a.coefficient != 0 && b.coefficient == 0)
{
return new Expression(a.variable, a.coefficient, a.exponent, a.constant - b.constant);
}
else if (a.coefficient == 0 && b.coefficient == 0)
{
return new Expression(a.constant + b.constant);
}
else
{
throw new InvalidOperationException("Variables or exponents do not match");
}
}
public static Expression operator *(Expression a, Expression b)
{
float newCoefficient;
float newExponent;
float newConstant = a.constant * b.constant;
if (a.coefficient != 0 && b.coefficient != 0)
{
newCoefficient = a.coefficient * b.coefficient;
newExponent = a.exponent + b.exponent;
return new Expression(a.variable, newCoefficient, newExponent, newConstant);
}
else if (a.coefficient == 0 && b.coefficient != 0)
{
return new Expression(b.variable, b.coefficient * a.constant, b.exponent, newConstant);
}
else if (a.coefficient != 0 && b.coefficient == 0)
{
return new Expression(a.variable, a.coefficient * b.constant, a.exponent, newConstant);
}
else
{
return new Expression(newConstant);
}
}
public static Expression operator /(Expression a, Expression b)
{
if (b.coefficient == 0)
{
throw new InvalidOperationException("Division by zero");
}
if (a.variable == b.variable && a.exponent == b.exponent)
{
return new Expression(a.variable, a.coefficient / b.coefficient, a.exponent, a.constant / b.constant);
}
else
{
throw new InvalidOperationException("Variables or exponents do not match");
}
}
public override string ToString()
{
string returnString = "";
if (coefficient != 0)
{
if (coefficient != 1)
{
returnString += $"{coefficient}";
}
returnString += $"{variable}";
}
if (exponent != 1)
{
returnString += $"^{exponent}";
}
if (constant != 0)
{
if (returnString.Length != 0 && constant > 0)
{
returnString += "+";
}
returnString += $"{constant}";
}
if (returnString.Length == 0)
{
return "0";
}
return returnString;
}
}