Encode and Decode TinyURL
Note: This is a companion problem to the System Design problem: Design TinyURL.
TinyURL is a URL shortening service where you enter a URL such as https://leetcode.com/problems/design-tinyurl
and it returns a short URL such as http://tinyurl.com/4e9iAk
.
Design the encode
and decode
methods for the TinyURL service. There is no restriction on how your encode/decode algorithm should work. You just need to ensure that a URL can be encoded to a tiny URL and the tiny URL can be decoded to the original URL.
分析
可以直接用urls的len,urls存所有longurl。可以decode回去,直接得到index取出longurl
用某个数字mod62,然后取[A-Z, a-z, 0-9]间值。 这个数字可以用global counter或者len(urls).不能decode,只能把所有decoded short->long map存起来,decode直接取
别忘了存2个map,对重复longurl不用encode again
Last updated