LeetCode 271. Encode and Decode String

Question

Design an algorithm to encode a list of strings to a string. The encoded string is then sent over the network and is decoded back to the original list of strings.

Machine 1 (sender) has the function:

1
2
3
4
string encode(vector<string> strs) {
// ... your code
return encoded_string;
}

Machine 2 (receiver) has the function:

1
2
3
4
vector<string> decode(string s) {
//... your code
return strs;
}

So Machine 1 does:

1
string encoded_string = encode(strs);

and Machine 2 does:

1
vector<string> strs2 = decode(encoded_string);

strs2 in Machine 2 should be the same as strs in Machine 1.

Implement the encode and decode methods.

You are not allowed to solve the problem using any serialize methods (such as eval).

Example 1:

1
2
3
4
5
6
7
8
9
10
11
Input: dummy_input = ["Hello","World"]
Output: ["Hello","World"]
Explanation:
Machine 1:
Codec encoder = new Codec();
String msg = encoder.encode(strs);
Machine 1 ---msg---> Machine 2

Machine 2:
Codec decoder = new Codec();
String[] strs = decoder.decode(msg);

Example 2:

1
2
Input: dummy_input = [""]
Output: [""]

Constraints:

  • 1 <= strs.length <= 200
  • 0 <= strs[i].length <= 200
  • strs[i] contains any possible characters out of 256 valid ASCII characters.

Source: https://leetcode.com/problems/encode-and-decode-strings/

Solution

The best solution is to add a header that represents the length of each string instead of using delimiter. Strings will be concatenated as header-payload-header-....

Note that we call toCharArray method rather than getBytes(). We do not care about the content of payload so that we do not need to encode/decode strings. Also, on some OA platforms, we may need to import desired character set manually.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// encode a 32-bit integer to a char array, according to little endian
// then convert the byte array into a string
private String int2string(int len) {
char[] bytes = new char[4];
for (int i = 0; i < 4; i++) {
bytes[i] = (char) ((len >> (i * 8)) & 0xff);
}
return new String(bytes);
}

// decode a 32-bit string to int
private int string2int(String s) {
char[] bytes = s.toCharArray();
int len = 0;
for (int i = 0; i < 4; i++) {
len += ((int) (bytes[i])) << (i * 8);
}
return len;
}

// Encodes a list of strings to a single string.
public String encode(List<String> strs) {
StringBuilder builder = new StringBuilder();
for (String str : strs) {
builder.append(int2string(str.length()));
builder.append(str);
}
return builder.toString();
}

// Decodes a single string to a list of strings.
public List<String> decode(String s) {
int i = 0;
List<String> res = new ArrayList<>();
while (i < s.length()) {
int strLen = string2int(s.substring(i, i + 4));
i += 4;
res.add(s.substring(i, i + strLen));
i += strLen;
}
return res;
}
Author

Weihao Ye

Posted on

2021-12-30

Updated on

2022-01-10

Licensed under