在Python中,可以使用列表來實現棧的功能。棧是一種后進先出(LIFO)的數據結構,只允許在棧的一端進行插入和刪除操作。
以下是一個使用列表作為棧的示例:
以下是一個使用棧的示例程序,判斷一個字符串中的括號是否匹配:
def is_valid_parentheses(s):
stack = []
parentheses = {'(': ')', '[': ']', '{': '}'}
for char in s:
if char in parentheses.keys():
stack.append(char) # 左括號入棧
elif char in parentheses.values():
if not stack or parentheses[stack.pop()] != char:
return False # 右括號不匹配或棧為空
return not stack # 棧為空表示括號匹配
s = "({[]})"
if is_valid_parentheses(s):
print("括號匹配")
else:
print("括號不匹配")
運行結果為:“括號匹配”。