394. 字符串解码

给定一个经过编码的字符串,返回它解码后的字符串。

编码规则为: k[encoded_string],表示其中方括号内部的 encoded_string 正好重复 k 次。注意 k 保证为正整数。

你可以认为输入字符串总是有效的;输入字符串中没有额外的空格,且输入的方括号总是符合格式要求的。

此外,你可以认为原始数据不包含数字,所有的数字只表示重复的次数 k ,例如不会出现像 3a 或 2[4] 的输入。

示例:

s = "3[a]2[bc]", 返回 "aaabcbc".
s = "3[a2[c]]", 返回 "accaccacc".
s = "2[abc]3[cd]ef", 返回 "abcabccdcdcdef".

**思路1:**使用栈结构

出栈的时候注意一下两种情况:

  • [2[xy]*]
  • [ab2[xy]*]

在实现的时候,忽略了第一种情况

class Solution:
    def decodeString(self, s: str) -> str:
        stack = []
        for item in s:
            if item == ']':
                num = ""
                base = ""
                complted = False
                while stack:
                    if complted and (stack[-1].isalpha() or stack[-1] == '['):
                        break
                    top = stack.pop()
                    if top == '[':
                        complted = True
                        continue
                    if not complted and top.isalpha():
                        base = top + base
                        continue
                    if top.isdigit():
                        num = top + num
                stack.append(base * int(num))
            else:
                stack.append(item)
            #print(item, stack)
        return "".join(stack)

这个题思路不难,但自己不能一次写对,还需要通过调试测试样例来修改代码。自己的思维逻辑和编程水平还待提高。

你可能感兴趣的:(Leetcode)