-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathencodeandDecodeTinyURL.cpp
More file actions
45 lines (39 loc) · 1.33 KB
/
encodeandDecodeTinyURL.cpp
File metadata and controls
45 lines (39 loc) · 1.33 KB
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
43
44
45
// Source: https://leetcode.com/problems/encode-and-decode-tinyurl/
// Author: Miao Zhang
// Date: 2021-02-20
class Solution {
public:
Solution() {
dict = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
short2long.clear();
long2short.clear();
srand(time(NULL));
}
// Encodes a URL to a shortened URL.
string encode(string longUrl) {
if (long2short.count(longUrl)) {
return "http://tinyurl.com/" + long2short[longUrl];
}
string randstr;
for (int i = 0; i < 6; i++) randstr.push_back(dict[rand() % 62]);
int idx = 0;
while (short2long.count(randstr)) {
randstr[idx] = dict[rand() % 62];
idx = (idx + 1) % 6;
}
short2long[randstr] = longUrl;
long2short[longUrl] = randstr;
return "http://tinyurl.com/" + randstr;
}
// Decodes a shortened URL to its original URL.
string decode(string shortUrl) {
string randstr = shortUrl.substr(shortUrl.find_last_of("/") + 1);
return short2long.count(randstr) ? short2long[randstr] : shortUrl;
}
private:
unordered_map<string, string> short2long, long2short;
string dict;
};
// Your Solution object will be instantiated and called as such:
// Solution solution;
// solution.decode(solution.encode(url));