LeetCode75——Day26

编程入门 行业动态 更新时间:2024-10-18 14:16:46

LeetCode75——Day26

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].

二、题解

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;}
}; 

更多推荐

LeetCode75——Day26

本文发布于:2023-11-16 14:57:54,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1627219.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!