2021-04-26から1日間の記事一覧

Day8 stackの続き

class InfixToPostfix(object): """ InfixToPostfix つまり中置から後置 get the postfix of the given infix expression """ def __init__(self, expression=None, stack=None): """ :param expression: the infix expression to be converted to postfix :…