Leetcode_394_ Decode String_dfs搜索_我的算法之路_解密字符串

在這個題目中,在給定3[a]2[bc]這種形式的字符串,我們需要來解密這個字符串,即用遞歸的思想來做下面是我的代碼 class Solution { public: string decodeString(string s) { string res; for(int i=0;i<s.size();)//首先對字符串的每一個字符進行枚舉 {
相關文章
相關標籤/搜索