博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Leetcode: Encode and Decode Strings
阅读量:5977 次
发布时间:2019-06-20

本文共 2022 字,大约阅读时间需要 6 分钟。

1 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. 2  3 Machine 1 (sender) has the function: 4  5 string encode(vector
strs) { 6 // ... your code 7 return encoded_string; 8 } 9 Machine 2 (receiver) has the function:10 vector
decode(string s) {11 //... your code12 return strs;13 }14 So Machine 1 does:15 16 string encoded_string = encode(strs);17 and Machine 2 does:18 19 vector
strs2 = decode(encoded_string);20 strs2 in Machine 2 should be the same as strs in Machine 1.21 22 Implement the encode and decode methods.23 24 Note:25 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.26 Do not use class member/global/static variables to store states. Your encode and decode algorithms should be stateless.27 Do not rely on any library method such as eval or serialize methods. You should implement your own encode/decode algorithm.

本题难点在于如何在合并后的字符串中,区分出原来的每一个子串。这里我采取的编码方式,是将每个子串的长度先赋在前面,然后用一个#隔开长度和子串本身。这样我们先读出长度,就知道该读取多少个字符作为子串了。

注意

为了简化代码,这里使用了indexOfsubstring这两个属于String的API,实际上复杂度和遍历是一样的。

1 public class Codec { 2  3     // Encodes a list of strings to a single string. 4     public String encode(List
strs) { 5 StringBuffer res = new StringBuffer(); 6 for (int i=0; i
decode(String s) {16 List
result = new ArrayList
();17 while (s.length() > 0) {18 int i = s.indexOf("#");19 int count = Integer.parseInt(s.substring(0, i));20 result.add(s.substring(i+1, i+1+count));21 s = s.substring(i+1+count);22 }23 return result;24 }25 }26 27 // Your Codec object will be instantiated and called as such:28 // Codec codec = new Codec();29 // codec.decode(codec.encode(strs));

 

转载地址:http://pesox.baihongyu.com/

你可能感兴趣的文章
利用express搭建一个restful api 服务器
查看>>
(转)调整.NET控件WebBrowser的默认浏览器内核版本
查看>>
[导入]让你的WAP网站有更好的兼容性
查看>>
.NET Exceptionless 本地部署踩坑记录
查看>>
航电OJ-2544最短路
查看>>
CF772E Verifying Kingdom
查看>>
雨林木风U盘装系统综合教程
查看>>
V-by-one
查看>>
让我欲罢不能的node.js
查看>>
python3基础知识学习记录
查看>>
10年.NET老程序员推荐的7个开发类工具
查看>>
C#核心编程结构(2)
查看>>
rename设计思想(Perl版)
查看>>
第二次冲刺 第七天
查看>>
矩阵之矩阵乘法(转载)
查看>>
Python _内置函数3_45
查看>>
cf-Igor In the Museum (dfs)
查看>>
数据之路 Day4 - Python基础4
查看>>
使用openCV打开USB摄像头(UVC 小米micro接口)
查看>>
Luogu P3577 [POI2014]TUR-Tourism
查看>>