[LeetCode#271] Encode and Decode Strings
Problem:
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:
string encode(vector<string> strs) {
// ... your code
return encoded_string;
}
Machine 2 (receiver) has the function:
vector<string> decode(string s) {
//... your code
return strs;
}
So Machine 1 does:
string encoded_string = encode(strs);
and Machine 2 does:
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.
Note:
- The string may contain any possible characters out of 256 valid ascii characters. Your algorithm should be generalized enough to work on any possible characters.
- Do not use class member/global/static variables to store states. Your encode and decode algorithms should be stateless.
- Do not rely on any library method such as
evalor serialize methods. You should implement your own encode/decode algorithm.
Analysis:
This problem needs some skills in implementation. Once you know the tricky skill underlying it, you would think how it could be so easy!
Instant idea: Can you use some special characters to separate those strings.
Nope! No matter what kind of special characters you use, it may appear in each individual string by chance! Then I have came up with the idea to use certain number of characters to record each string's information in the overall string.
However, how much prefix characters is enough? how to sepearte the information for each string out?
That's a headache problem! The genius idea: why not combinely use special character and size information. Wrap your string in following way in the encode string.
encode_string = size1:{original_string}size2:{original_string}size3:{original_string}size4:{original_string}
each original string is wrap through following way:
original_string ---> size1:{original_string} For a single block, how could we extract the orginal_string out of wraped string?
Step 1: get the start index of the block. Inital start index is 0.
-------------------------------------------------------------------
int next_start = 0; Step 2: use ":" to get the orginal_string's length.
-------------------------------------------------------------------
int split_index = s.indexOf(":", next_start);
int len = Integer.valueOf(s.substring(next_start, split_index)); Step 3: combinely use ":" and length information to extract the original string out.
-------------------------------------------------------------------
String item = s.substring(split_index+1, split_index+1+len);
ret.add(item); Step 4: update the start index for the next string.
-------------------------------------------------------------------
next_start = split_index+1+len;
Wrong Solution:
public class Codec {
// Encodes a list of strings to a single string.
public String encode(List<String> strs) {
if (strs == null)
throw new IllegalArgumentException("strs is null");
StringBuffer buffer = new StringBuffer();
for (String str : strs) {
buffer.append(str.length());
buffer.append(":");
buffer.append(str);
}
return buffer.toString();
}
// Decodes a single string to a list of strings.
public List<String> decode(String s) {
List<String> ret = new ArrayList<String> ();
int next_start = 0;
int split_index = s.indexOf(":");
int len = Integer.valueOf(s.substring(next_start, split_index));
while (next_start < s.length()) {
String item = s.substring(split_index+1, split_index+1+len);
ret.add(item);
next_start = split_index+1+len;
split_index = s.indexOf(":", next_start);
len = Integer.valueOf(s.substring(next_start, split_index));
}
return ret;
}
}
Mistakes Analysis:
Last executed input:
[] Mistake Analysis:
My first implementation is complex and so ugly!!!
Since we need to do the same work for all wrapped strings, we should not allow a singly operation spill out the common block. int next_start = 0;
int split_index = s.indexOf(":"); //what if there is no string in the encoded string!!! This ugly logic incure a corner case!
int len = Integer.valueOf(s.substring(next_start, split_index));
while (next_start < s.length()) {
String item = s.substring(split_index+1, split_index+1+len);
ret.add(item);
next_start = split_index+1+len;
split_index = s.indexOf(":", next_start);
len = Integer.valueOf(s.substring(next_start, split_index));
} What's more, "while (next_start < s.length())" is great checking for cases!
Solution:
public class Codec {
// Encodes a list of strings to a single string.
public String encode(List<String> strs) {
if (strs == null)
throw new IllegalArgumentException("strs is null");
StringBuffer buffer = new StringBuffer();
for (String str : strs) {
buffer.append(str.length());
buffer.append(":");
buffer.append(str);
}
return buffer.toString();
}
// Decodes a single string to a list of strings.
public List<String> decode(String s) {
List<String> ret = new ArrayList<String> ();
int next_start = 0;
while (next_start < s.length()) {
int split_index = s.indexOf(":", next_start);
int len = Integer.valueOf(s.substring(next_start, split_index));
String item = s.substring(split_index+1, split_index+1+len);
ret.add(item);
next_start = split_index+1+len;
}
return ret;
}
}
// Your Codec object will be instantiated and called as such:
// Codec codec = new Codec();
// codec.decode(codec.encode(strs));
[LeetCode#271] Encode and Decode Strings的更多相关文章
- [LeetCode] 271. Encode and Decode Strings 加码解码字符串
Design an algorithm to encode a list of strings to a string. The encoded string is then sent over th ...
- 271. Encode and Decode Strings
题目: Design an algorithm to encode a list of strings to a string. The encoded string is then sent ove ...
- [LC] 271. Encode and Decode Strings
Design an algorithm to encode a list of strings to a string. The encoded string is then sent over th ...
- [LeetCode] Encode and Decode Strings 加码解码字符串
Design an algorithm to encode a list of strings to a string. The encoded string is then sent over th ...
- LeetCode Encode and Decode Strings
原题链接在这里:https://leetcode.com/problems/encode-and-decode-strings/ 题目: Design an algorithm to encode a ...
- Encode and Decode Strings -- LeetCode
Design an algorithm to encode a list of strings to a string. The encoded string is then sent over th ...
- [Swift]LeetCode271. 加码解码字符串 $ Encode and Decode Strings
Design an algorithm to encode a list of strings to a string. The encoded string is then sent over th ...
- Encode and Decode Strings
Design an algorithm to encode a list of strings to a string. The encoded string is then sent over th ...
- Encode and Decode Strings 解答
Question Design an algorithm to encode a list of strings to a string. The encoded string is then sen ...
随机推荐
- Nginx性能统计模块http_stub_status_module使用
1.进入nginx源码目录,重新配置编译参数 ./configure --prefix=/usr/local/nginx/ --with-http_stub_status_module 2.重新编译安 ...
- 使用LuaInterface遇到的编码问题
今天使用LuaInterface加载脚本时忽然报“未知字符”错误信息!于是检查文件编码 将其修改为“US ASCII” 就好了.
- [XML] C# XmlHelper操作Xml文档的帮助类 (转载)
点击下载 XmlHelper.rar 主要功能如下所示 /// <summary> /// 类说明:XmlHelper /// 编 码 人:苏飞 /// 联系方式:361983679 // ...
- SQL Server 中WITH (NOLOCK)
with(nolock)的功能: 1: 指定允许脏读.不发布共享锁来阻止其他事务修改当前事务读取的数据,其他事务设置的排他锁不会阻碍当前事务读取锁定数据.允许脏读可能产生较多的并发操作,但其代价是读取 ...
- JAVA-线程安全性
线程安全性: 一个类是线程安全的是指在被多个线程访问时,类可以持续进行正确的行为.不用考虑这些线程运行时环境下的调度和交替. 编写正确的并发程序的关键在于对共享的,可变的状态进行访问管理. 解决方 ...
- 6 关于 Oracle NULL栏位和PL./SQL执行实验
今日有针对NULL值有了相关实验. 对NULL 值插入的讨论. 1, PL/SQL 中可以执行插入''或者NULL 的操作, 前提是栏位允许为空. 2, 可以对NULL进行一系列数据库运算. 如: ...
- 翻纸牌 高校俱乐部 英雄会 csdn
题目描述 有一种纸牌游戏,很有意思,给你N张纸牌,一字排开,纸牌有正反两面,开始的纸牌可能是一种乱的状态(有些朝正,有些朝反),现在你需要整理这些纸牌.但是麻烦的是,每当你翻一张纸牌(由正翻到反,或者 ...
- 中文翻译:pjsip教程(二)之ICE穿越打洞:Interactive Connectivity Establishment简介
1:pjsip教程(一)之PJNATH简介 2:pjsip教程(二)之ICE穿越打洞:Interactive Connectivity Establishment简介 3:pjsip教程(三)之ICE ...
- Leetcode系列-Search in Rotated Sorted Array
做Leetcode题有一段时间了,但都是断断续续的,到现在才做了30题左右,感觉对自己来说还是有点难度的.希望自己能继续坚持下去,在校招前能解决超过一百题吧. 其实这些题就是用来训练你的解题思路的,做 ...
- jquery mobile基本结构搭建
官网:http://jquerymobile.com/ 基本结构: