鱼C论坛

 找回密码
 立即注册
查看: 2393|回复: 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都不对
小甲鱼最新课程 -> https://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:

  1. def q5_parentheses(rstring):
  2.     stack = []
  3.     opening = set(["(", "[", "{"])
  4.     closing = set([")", "]", "}"])

  5.     for char in rstring:
  6.         if char in opening:
  7.             stack.append(char)
  8.         elif char in closing:
  9.             if not stack:
  10.                 return False
  11.             top = stack.pop()
  12.             if (top == "(" and char != ")") or (top == "[" and char != "]") or (top == "{" and char != "}"):
  13.                 return False

  14.     return len(stack) == 0
复制代码


Now, let's test the function with the provided test cases:

  1. assert not q5_parentheses("{")
  2. assert q5_parentheses("{[()]}")
  3. assert not q5_parentheses("{[(])}")
复制代码


The function should pass these assertions without raising any exceptions.
请注意,本回答来自GPT-4
如果问题已经解决,请设置最佳答案
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-6-24 17:33

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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