LeetCode75——Day26

文章目录

一、题目

394. Decode String

Given an encoded string, return its decoded string.

The encoding rule is: k[encoded_string], where the encoded_string inside the square brackets is being repeated exactly k times. Note that k is guaranteed to be a positive integer.

You may assume that the input string is always valid; there are no extra white spaces, square brackets are well-formed, etc. Furthermore, you may assume that the original data does not contain any digits and that digits are only for those repeat numbers, k. For example, there will not be input like 3a or 2[4].

The test cases are generated so that the length of the output will never exceed 105.

Example 1:

Input: s = "3[a]2[bc]"

Output: "aaabcbc"

Example 2:

Input: s = "3[a2[c]]"

Output: "accaccacc"

Example 3:

Input: s = "2[abc]3[cd]ef"

Output: "abcabccdcdcdef"

Constraints:

1 <= s.length <= 30

s consists of lowercase English letters, digits, and square brackets '[]'.

s is guaranteed to be a valid input.

All the integers in s are in the range [1, 300].

二、题解

cpp 复制代码
class Solution {
public:
    string decodeString(string s) {
        string ans;
        stack<pair<int, int>> stk;
        int count = 0;
        for (auto x : s) {
            if (isdigit(x)) 
                count = 10 * count + (x - '0');
            else if (x == '[') {
                stk.push({count, ans.size()});
                count = 0;
            }
            else if (isalpha(x)) 
                ans += x;
            else if (x == ']') {
                int n = stk.top().first;
                string str = ans.substr(stk.top().second, ans.size() - stk.top().second);
                for (int i = 0; i < n - 1; i++) {
                    ans += str;
                }
                stk.pop();
            }
        }
        return ans;
    }
}; 
相关推荐
北京_宏哥几秒前
🔥《爆肝整理》保姆级系列教程-玩转Charles抓包神器教程(15)-Charles如何配置反向代理
前端·面试·charles
雷渊1 分钟前
spring-IoC容器启动流程源码分析
java·后端·面试
划水哥~3 分钟前
创建QMainWindow菜单栏
开发语言·c++·qt
Process4 分钟前
前端图片技术深度解析:格式选择、渲染原理与性能优化
前端·面试·性能优化
努力的搬砖人.11 分钟前
maven如何使用
java·后端·面试·maven
饕餮ing11 分钟前
C++的UDP连接解析域名地址错误
开发语言·c++·udp
JohnFF21 分钟前
48. 旋转图像
数据结构·算法·leetcode
bbc12122621 分钟前
AT_abc306_b [ABC306B] Base 2
算法
生锈的键盘29 分钟前
推荐算法实践:movielens数据集
算法
董董灿是个攻城狮30 分钟前
Transformer 通关秘籍9:词向量的数值实际上是特征
算法