Created
February 13, 2015 20:07
-
-
Save andbroby/d55f52a1c6b9c7ea3c32 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import string | |
import sys | |
def re_to_postfix(infix): | |
precedence = { | |
'|': 1, | |
'.': 2, | |
'*': 3, | |
'+': 3, | |
'?': 3 | |
} | |
operators = precedence.keys() | |
alphabet = [letter for letter in string.letters] + [str(i) for i in [0,1,2,3,4,5,6,7,8,9]] | |
binary_operators = ['|', '.'] | |
unary_operators = ['?', '*', '+'] | |
stack = [] | |
output = [] | |
i = 0; | |
while i < len(infix): | |
e = infix[i] | |
if e in alphabet: | |
output.append(e) | |
j = i + 1 | |
while j < len(infix) and (infix[j] in alphabet or infix[j] == '('): | |
if infix[j] in alphabet: | |
output.append(infix[j]) | |
o1 = '.' | |
while stack and stack[-1] in operators: | |
o2 = stack[-1] | |
if precedence[o2] >= precedence[o1]: | |
output.append(stack.pop()) | |
else: | |
break | |
stack.append(o1) | |
if infix[j] == '(': | |
stack.append(infix[j]) | |
j += 1 | |
break | |
j += 1 | |
i = j | |
continue | |
elif e in operators: | |
o1 = e | |
while stack and stack[-1] in operators: | |
o2 = stack[-1] | |
if o1 in binary_operators and precedence[o2] >= precedence[o1] or \ | |
o1 in unary_operators and precedence[o2] > precedence[o1]: | |
output.append(stack.pop()) | |
else: | |
break | |
stack.append(e) | |
if e in unary_operators and i != len(infix)-1 and infix[i+1] in alphabet: | |
o1 = '.' | |
while stack and stack[-1] in operators: | |
o2 = stack[-1] | |
if precedence[o2] >= precedence[o1]: | |
output.append(stack.pop()) | |
else: | |
break | |
stack.append(o1) | |
elif e == '(': | |
stack.append(e) | |
elif e == ')': | |
stack_element = stack.pop() | |
while stack_element != '(': | |
output.append(stack_element) | |
stack_element = stack.pop() | |
i += 1 | |
while stack: | |
output.append(stack.pop()) | |
return output |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment