python作业5——消消乐

相邻的组合两两相消去,最后是否能消完

str = "{[()]{}[[]]}[()]"

def search(a, lst): # 寻找元素是否在列表中,并返回index
    for i in range(len(lst)):
        if lst[i] == a:
            return i
    else:
        return  False

def check(str): # 判断是否可消完
    open_bracket = ['(', '[', '{']
    close_bracket = [')', ']', '}']
    lst = [] # 存储已经消去的元素的index
    while len(lst) != len(str):
        stack = []
        for i in range(len(str)):
            if i in lst: # 判断是否已消去
                continue
            if str[i] in open_bracket:
                stack.append(str[i])
                b = i
            elif str[i] in close_bracket:
                if len(stack) > 0:
                    a = stack.pop() # a的index为b
                    stack = []
                    idx1 = search(a, open_bracket)
                    idx2 = search(str[i], close_bracket)
                    if idx1 == idx2:
                        lst.append(b) 
                        lst.append(i) # 将符合消去标准的符号索引存入列表
                        break
                    if idx1 != idx2: # 不符合消去标准,继续找下一个开括号
                        continue
                else:
                    return False
            else:
                return False
    return True

# main
if check(str):
    print("yes")
else:
    print("not")
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值