forked from srinidh-007/Coding_Problems
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Infix-prefix.cpp
83 lines (70 loc) · 1.79 KB
/
Infix-prefix.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
// Infix to Prefix using Stack in C++
#include <bits/stdc++.h>
using namespace std;
bool isOperator(char c)
{
return (!isalpha(c) && !isdigit(c));
}
int preceed(char a)
{
if(a == '+' || a == '-')
return 1;
else if(a == '*' || a == '/')
return 2;
else if(a == '^')
return 3;
else
return -1;
}
string infixToPostfix(string infix)
{
infix = '(' + infix + ')';
stack<char> char_stack;
string output;
for (int i = 0; i < infix.size(); i++) {
if (isalpha(infix[i]) || isdigit(infix[i]))
output += infix[i];
else if (infix[i] == '(')
char_stack.push('(');
else if (infix[i] == ')') {
while (char_stack.top() != '(') {
output += char_stack.top();
char_stack.pop();
}
char_stack.pop();
}
else {
if (isOperator(char_stack.top())) {
while (preceed(infix[i]) <= preceed(char_stack.top())) {
output += char_stack.top();
char_stack.pop();
}
char_stack.push(infix[i]);
}
}
}
return output;
}
string infixToPrefix(string infix)
{
reverse(infix.begin(), infix.end());
for (int i = 0; i < infix.size(); i++) {
if (infix[i] == '(') {
infix[i] = ')';
i++;
}
else if (infix[i] == ')') {
infix[i] = '(';
i++;
}
}
string prefix = infixToPostfix(infix);
reverse(prefix.begin(), prefix.end());
return prefix;
}
int main()
{
string s = ("(a+(b/c)*(d^e)-f)");
cout << infixToPrefix(s) << std::endl;
return 0;
}