Advertisement
exmkg

Untitled

Sep 28th, 2024
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.52 KB | None | 0 0
  1. class Solution {
  2.     public int evalRPN(String[] tokens) {
  3.         int a, b;
  4.  
  5.         Stack<Integer> S = new Stack<Integer>();
  6.         for (String s : tokens) {
  7.             if (s.equals("+")) {
  8.                 S.add(S.pop() + S.pop());
  9.             } else if (s.equals("/")) {
  10.                 b = S.pop();
  11.                 a = S.pop();
  12.                 S.add(a / b);
  13.             } else if (s.equals("*")) {
  14.                 S.add(S.pop() * S.pop());
  15.             } else if (s.equals("-")) {
  16.                 b = S.pop();
  17.                 a = S.pop();
  18.                 S.add(a - b);
  19.             } else {
  20.                 S.add(Integer.parseInt(s));
  21.             }
  22.         }  
  23.         return S.pop();
  24.     }
  25. }
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement