LeetCode 394. 字符串解码

  1. 字符串解码

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

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

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

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

LeetCode 394. 字符串解码_第1张图片
LeetCode 394. 字符串解码_第2张图片

class Solution {
public:
    string decodeString(string s) {
        stack<char> stk;
        string ans;
        for (auto itr = s.begin(); itr != s.end(); ++itr) {
            if (isalnum(*itr) || *itr == '[') {
                stk.push(*itr);
            } else {
                string tmpStr;
                while (stk.top() != '[') {
                    tmpStr = stk.top() + tmpStr;
                    stk.pop();
                }
                // cout << tmpStr << endl;
                stk.pop();
                int num = 0;
                while (stk.size() && isdigit(stk.top())) {
                    num = num * 10 + stk.top() - '0';
                    stk.pop();
                }
                // cout << num << endl;
                for (int i = 0; i < num; ++i) {
                    for (int j = 0; j < tmpStr.size(); ++j) {
                        stk.push(tmpStr[j]);
                    }
                }
            }
        }
        while (stk.size()) {
            ans = stk.top() + ans;
            stk.pop();
        }
        return ans;
    }
};

你可能感兴趣的:(LeetCode,leetcode,算法,职场和发展)