鱼C论坛

 找回密码
 立即注册
查看: 1356|回复: 1

[复制链接]
发表于 2023-10-26 16:18:53 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
Write a Python program to check if parentheses are balanced using a stack. Use the method q5_parentheses, which returns True if balanced. Otherwise, False. A set of parentheses is balanced if for every opening parenthesis there is a closing and matching parenthesis. Hence:

    ({[]})()
is balanced, while:

    ({[}])
is not.

def q5_parentheses(rstring):
   


​
assert not q5_parentheses ("{")
assert q5_parentheses ("{[()]}")
assert not q5_parentheses ("{[(])}")

求解,chat和bard都不对
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-10-26 16:19:15 | 显示全部楼层
Here's the corrected code for the q5_parentheses function that uses a stack to check if parentheses are balanced:
def q5_parentheses(rstring):
    stack = []
    opening = set(["(", "[", "{"])
    closing = set([")", "]", "}"])

    for char in rstring:
        if char in opening:
            stack.append(char)
        elif char in closing:
            if not stack:
                return False
            top = stack.pop()
            if (top == "(" and char != ")") or (top == "[" and char != "]") or (top == "{" and char != "}"):
                return False

    return len(stack) == 0

Now, let's test the function with the provided test cases:
assert not q5_parentheses("{")
assert q5_parentheses("{[()]}")
assert not q5_parentheses("{[(])}")

The function should pass these assertions without raising any exceptions.
请注意,本回答来自GPT-4
如果问题已经解决,请设置最佳答案
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-9-21 13:46

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表