Design algorithm to encode/decode: list of strings <-> string
Encode/decode w/ non-ASCII delimiter: {len of str, "#", str}
Time: O(n)
Space: O(1)
*/
class Codec {
public:
string encode(vector<string>& strs) {
string result;
for (const string& str : strs) {
result.append(to_string(str.size()));
result.push_back('#');
result.append(str);
}
return result;
}
vector<string> decode(string s) {
vector<string> result;
int i = 0;
while (i < s.size()) {
int j = i;
while (s[j] != '#') {
j++;
}
int length = stoi(s.substr(i, j - i));
string str = s.substr(j + 1, length);
result.push_back(str);
i = j + 1 + length;
}
return result;
}
private:
};