-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathInfxToPrefx.java
More file actions
147 lines (88 loc) · 2.46 KB
/
InfxToPrefx.java
File metadata and controls
147 lines (88 loc) · 2.46 KB
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
import java.util.Scanner;
public class InfxToPrefx
{
static int max = 50;
static char stack[] =new char[max];
static int top =-1;
static int pr(char elem)
{
switch(elem)
{
case '#':
return 0;
case ')' :
return 1;
case '+':
case'-':
return 2;
case '*' :
case '/' :
return 3;
}
return 0;
}
static char pop()
{
return stack[top--];
}
static void push(char elem)
{
top++;
stack[top] = elem;
}
public static void main(String[] args)
{
char infixChar[] = new char[50];
char tempChar[];
char prefix[] = new char[50];
int i=0,k=0;
char ch,elem ;
push('#');
Scanner in = new Scanner(System.in);
System.out.println("Enter infix expression");
String temp1 = in.nextLine();
temp1 =new StringBuilder(temp1).reverse().toString();
tempChar = temp1.toCharArray();//Reverse of infix
for(i=0;i<tempChar.length;i++)
{
infixChar[i] = tempChar[i];
}
System.out.println(infixChar);
while(infixChar[i]!='\0') {
ch = infixChar[i];
i++;
if (ch == ')')
push(ch);
else if (Character.isDigit(ch)) {
prefix[k++] = ch;
} else
if (ch == '(')
{
while (stack[top] != ')') {
prefix[k++] = pop();
}
elem = pop();
} else {
while (pr(stack[top]) > pr(ch)) {
prefix[k++] = pop();
}
push(ch);
}
System.out.println(i);
}
while(stack[top]!='#')
{
prefix[k++]=pop();
}
prefix[k]='\0';
System.out.println(prefix);
//reverse(infixChar);
temp1 =new StringBuilder(temp1).reverse().toString();
infixChar = temp1.toCharArray();//Reverse of infix
//reverse(prefix);
String temp2 = new String(prefix);
temp2 =new StringBuilder(temp2).reverse().toString();
prefix = temp2.toCharArray();//Reverse of infix
System.out.println(prefix);
}
}