-
Notifications
You must be signed in to change notification settings - Fork 0
/
truthtable.cpp
254 lines (235 loc) · 3.68 KB
/
truthtable.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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
#include <iostream>
#include <windows.h>
#include <string>
#include <stack>
using namespace std;
class infix_To_Post
{
public:
//Precidence
int precidence(char c)
{
if (c == '~')
{
return 4;
}
else if (c == '*')
{
return 3;
}
else if (c == '+')
{
return 2;
}
else
{
return -1;
}
}
//Conversion
string infix_to_post(string data)
{
stack<char> st; string result;
for (int i = 0; i < data.length(); i++)
{
char c = data[i];
if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' &&
c <= '9'))
{
result = result + c;
}
else if (c == '(')
{
st.push('(');
}
else if (c == ')')
{
while (st.top() != '(')
{
result = result + st.top();
st.pop();
}
st.pop();
}
else
{
while (!st.empty() && precidence(data[i]) <=
precidence(st.top()))
{
result = result + st.top();
st.pop();
}
st.push(c);
}
}
while (!st.empty())
{
result = result + st.top();
st.pop();
}
cout << endl << "Expression is : " << result << endl;
return result;
}
};
bool checkop(string exp, int i)
{
if ((exp[i] == '~') || (exp[i] == '*') || (exp[i] == '(') || (exp[i] == ')') || (exp[i] == '+'))
{
return true;
}
else
return false;
}
int evaluation(string exp)
{
string s;
infix_To_Post obj;
s = obj.infix_to_post(exp);
stack <int> st1;
for (int i = 0; i < s.length(); i++)
{
if (isalpha(s[i]))
{
st1.push(s[i]);
}
else
{
int op2 = st1.top();
st1.pop();
int op1 = st1.top();
st1.pop();
switch (s[i])
{
case '+':
st1.push(op1 + op2);
break;
case '*':
st1.push(op1 * op2);
break;
case '~':
st1.push(~op1);
break;
default:
break;
}
}
return st1.top();
}
}
int main()
{
string exp;
string exp1;
stack<char> st;
int checkalpha = 0;
int checkoperator = 0;
int a = 0;
cout << "enter expression" << endl;
getline(cin, exp);
int len = exp.length();
// check alpahabet
for (int i = 0; i < len; i++)
{
if (isalpha(exp[i]) || checkop(exp, i))
{
cout << "" << endl;
}
else
{
a++;
}
if (a != 0)
{
cout << "invalid input" << endl;
Sleep(2000);
system("cls");
cout << "enter expression" << endl;
getline(cin, exp);
}
}
//expersion without operator
for (int i = 0; i < len; i++)
{
if (isalpha(exp[i]))
{
exp1 += exp[i];
}
}
string exp2 = "\0";
int length = exp1.length();
exp2 += exp1[0];
int exp2Length = exp2.length();
for (int i = 0; i < length; i++)
{
for (int j = 0; j < exp2Length; j++)
{
if (exp1[i] != exp2[j])
{
exp2 += exp1[i];
break;
}
}
}
//initialize Table
int rows = pow(2, exp2.length());
int cols = exp2.length() + 1;
int** matrix = new int* [rows];
for (int i = 0; i < rows; i++)
{
matrix[i] = new int[cols];
}
for (int i = 0; i < rows; i++)
{
for (int j = 0; j < cols; j++)
{
if (matrix[i][j] == matrix[1][1]) {
matrix[1][1] = 0;
}
else
matrix[i][j] = 1;
}
}
cout << "FILLED" << endl;
system("cls");
//Filling Table
for (int i = 0; i < rows; i++)
{
int x = i;
for (int j = cols - 2; j >= 0; j--)
{
matrix[i][j] = (x % 2);
x = x / 2;
}
}
// print filling table
for (int i = 0; i < rows; i++)
{
for (int j = 0; j < cols; j++)
{
cout << matrix[i][j] << " ";
}
cout << endl;
}
// evalate
string s;
infix_To_Post obj;
s = obj.infix_to_post(exp);
for (int i = 0; i < rows; i++)
{
for (int j = 0; j < s.length(); j++)
{
for (int k = 0; k < exp2.length(); k++)
{
if (isalpha(s[i]))
{
s += to_string(matrix[i][k]);
}
else if (checkop(s, i))
{
s += s;
}
}
}
matrix[i][cols - 1] = evaluation(s);
}
}