leetcode--394. Decode String

題目描述: 使用深度優先遍歷方法 class Solution { public:     string decodeString(string s) {                  string res = "";         int a = 0;         return helper(a, s);                       }     string helpe
相關文章
相關標籤/搜索