【LeetcodeDay11】20. 有效的括号 1047. 删除字符串中的所有相邻重复项 150. 逆波兰表达式求值

20. 有效的括号 

class Solution:
    def isValid(self, s: str) -> bool:
        stack=[]
        
        for item in s:
            if item == "(":
                stack.append(')')
            elif item == '[':
                stack.append(']')
            elif item == '{':
                stack.append('}')
            elif not stack or stack[-1] != item:
                return False #记得判断栈是否为空
            else:
                stack.pop()
        return True if not stack else False

1047. 删除字符串中的所有相邻重复项

class Solution:
    def removeDuplicates(self, s: str) -> str:
        res = list()
        for item in s:
            if res and res[-1] == item:
                res.pop()
            else:
                res.append(item)
        return "".join(res)

######不用栈的方法
class Solution:
    def removeDuplicates(self, s: str) -> str:
        #用双指针模拟栈
        res = list(s)
        slow = fast = 0
        length = len(res)
        while fast<length:
            res[slow] = res[fast]

            if slow >0 and res[slow] == res[slow-1]:
                slow -= 1
            else:
                slow += 1
            
            fast += 1
        return "".join(res[0:slow])

150. 逆波兰表达式求值 


#from operator import add, sub, mul
class Solution:
    #op_map = {'+':add,'-':sub,'*':mul,'/': lambda x, y: int(x/y)}
    def evalRPN(self, tokens: List[str]) -> int:
        #stack = []
        #for token in tokens:
        #    if token not in {'+','-','*','/'}:
        #        stack.append(int(token))
        #    else:
        #        op2 = stack.pop()
        #        op1 = stack.pop()
        #        stack.append(self.op_map[token](op1,op2))  
        #        #第一个出来的在运算符后面
        #return stack.pop()     
        stack = []
        for item in tokens:
            if item not in {'+','-','*','/'}:
                stack.append(int(item))
            else:
                op2 = stack.pop()
                op1 = stack.pop()
                stack.append(int(eval(f'{op1} {item} {op2}')))
        return stack.pop()

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值