|
| 1 | +""" |
| 2 | +Output: |
| 3 | +
|
| 4 | +Enter an Infix Equation = a + b ^c |
| 5 | + Symbol | Stack | Postfix |
| 6 | +---------------------------- |
| 7 | + c | | c |
| 8 | + ^ | ^ | c |
| 9 | + b | ^ | cb |
| 10 | + + | + | cb^ |
| 11 | + a | + | cb^a |
| 12 | + | | cb^a+ |
| 13 | +
|
| 14 | + a+b^c (Infix) -> +a^bc (Prefix) |
| 15 | +""" |
| 16 | + |
| 17 | +def infix_2_postfix(Infix): |
| 18 | + Stack = [] |
| 19 | + Postfix = [] |
| 20 | + priority = {'^':3, '*':2, '/':2, '%':2, '+':1, '-':1} # Priority of each operator |
| 21 | + print_width = len(Infix) if(len(Infix)>7) else 7 |
| 22 | + |
| 23 | + # Print table header for output |
| 24 | + print('Symbol'.center(8), 'Stack'.center(print_width), 'Postfix'.center(print_width), sep = " | ") |
| 25 | + print('-'*(print_width*3+7)) |
| 26 | + |
| 27 | + for x in Infix: |
| 28 | + if(x.isalpha() or x.isdigit()): Postfix.append(x) # if x is Alphabet / Digit, add it to Postfix |
| 29 | + elif(x == '('): Stack.append(x) # if x is "(" push to Stack |
| 30 | + elif(x == ')'): # if x is ")" pop stack until "(" is encountered |
| 31 | + while(Stack[-1] != '('): |
| 32 | + Postfix.append( Stack.pop() ) #Pop stack & add the content to Postfix |
| 33 | + Stack.pop() |
| 34 | + else: |
| 35 | + if(len(Stack)==0): Stack.append(x) #If stack is empty, push x to stack |
| 36 | + else: |
| 37 | + while( len(Stack) > 0 and priority[x] <= priority[Stack[-1]]): # while priority of x is not greater than priority of element in the stack |
| 38 | + Postfix.append( Stack.pop() ) # pop stack & add to Postfix |
| 39 | + Stack.append(x) # push x to stack |
| 40 | + |
| 41 | + print(x.center(8), (''.join(Stack)).ljust(print_width), (''.join(Postfix)).ljust(print_width), sep = " | ") # Output in tabular format |
| 42 | + |
| 43 | + while(len(Stack) > 0): # while stack is not empty |
| 44 | + Postfix.append( Stack.pop() ) # pop stack & add to Postfix |
| 45 | + print(' '.center(8), (''.join(Stack)).ljust(print_width), (''.join(Postfix)).ljust(print_width), sep = " | ") # Output in tabular format |
| 46 | + |
| 47 | + return "".join(Postfix) # return Postfix as str |
| 48 | + |
| 49 | +def infix_2_prefix(Infix): |
| 50 | + Infix = list(Infix[::-1]) # reverse the infix equation |
| 51 | + |
| 52 | + for i in range(len(Infix)): |
| 53 | + if(Infix[i] == '('): Infix[i] = ')' # change "(" to ")" |
| 54 | + elif(Infix[i] == ')'): Infix[i] = '(' # change ")" to "(" |
| 55 | + |
| 56 | + return (infix_2_postfix("".join(Infix)))[::-1] # call infix_2_postfix on Infix, return reverse of Postfix |
| 57 | + |
| 58 | +if __name__ == "__main__": |
| 59 | + Infix = input("\nEnter an Infix Equation = ") #Input an Infix equation |
| 60 | + Infix = "".join(Infix.split()) #Remove spaces from the input |
| 61 | + print("\n\t", Infix, "(Infix) -> ", infix_2_prefix(Infix), "(Prefix)") |
0 commit comments