Python报文解压缩

360影视 日韩动漫 2025-03-21 18:31 4

摘要:def decompress_message(compressed):stack = current_num = 0current_str = ''for char in compressed:if char.isdigit:current_num = cur

def decompress_message(compressed):stack = current_num = 0current_str = ''for char in compressed:if char.isdigit:current_num = current_num * 10 + int(char)elif char == '[':stack.append((current_str, current_num))current_str = ''current_num = 0elif char == ']':last_str, last_num = stack.popcurrent_str = last_str + current_str * last_numelse:current_str += charreturn current_str# 读取输入compressed = input.strip# 计算并输出结果print(decompress_message(compressed))

使用栈来存储当前的字符串和重复次数。

遍历压缩报文

如果字符是数字,则更新当前的重复次数。

如果字符是 [,则将当前的字符串和重复次数压入栈中,并重置当前字符串和重复次数。

如果字符是 ],则从栈中弹出上一次的字符串和重复次数,并将当前字符串重复相应次数后与上一次的字符串拼接。

如果字符是字母,则将其添加到当前字符串中。

输出结果

来源:亚利教育

相关推荐