使用栈进行复杂符号匹配
Posted masterhu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用栈进行复杂符号匹配相关的知识,希望对你有一定的参考价值。
from pythonds.basic.stack import Stack
def parchecker(SymbolString):
s=Stack()
balance=True
index=0
while index<len(SymbolString) and balance:
if SymbolString[index] in ‘{[(‘:
s.push(SymbolString[index])
elif s.isEmpty():
balance=False
else:
top=s.pop()
if not match(top,SymbolString[index]):
balance=False
if s.isEmpty() and balance:
return True
else:
return False
def match(open,close):
a=‘{[(‘
b=‘}])‘
if a.index(open)==b.index(close):
return True
else:
return False
print(parchecker(‘{{([][])}()}‘))
以上是关于使用栈进行复杂符号匹配的主要内容,如果未能解决你的问题,请参考以下文章