-
Notifications
You must be signed in to change notification settings - Fork 0
/
postfix-eval.java
94 lines (68 loc) · 1.91 KB
/
postfix-eval.java
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
//Evaluation of Postfix Expression
import java.util.*;
class post {
int sa[];
int capacity;
int top;
post(int size) {
capacity = size;
top = -1;
sa = new int[capacity];
}
void push(int a) {
top++;
sa[top] = a;
}
int pop() {
top--;
return sa[top + 1];
}
int evalpost(String s) {
for (int i = 0; i < s.length(); i++) {
char c = s.charAt(i);
if (Character.isDigit(c)) {
push(c - '0');
} else {
int op2 = pop();
int op1 = pop();
switch (c) {
case '+':
push(op1 + op2);
break;
case '-':
push(op1 - op2);
break;
case '*':
push(op1 * op2);
break;
case '/':
push(op1 / op2);
break;
case '%':
push(op1 % op2);
break;
case '^':
push((int) Math.pow(op1, op2));
break;
case '$':
push((int) Math.pow(op1, op2));
break;
default:
System.out.println();
break;
}
}
}
return pop();
}
}
class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("Enter the postfix expression: ");
String s = sc.nextLine();
post p = new post(s.length());
int ans = p.evalpost(s);
System.out.println("Evaluation of postfix expression is: " + ans);
}
}