Skip to content

Commit b709244

Browse files
committed
Add 0535-encode-and-decode-tinyurl.c
1 parent 63bd0cd commit b709244

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed

c/0535-encode-and-decode-tinyurl.c

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
// Represent an element in a hash table.
2+
typedef struct Hash {
3+
char* key;
4+
char* value;
5+
UT_hash_handle hh;
6+
} Hash;
7+
8+
Hash *root = NULL;
9+
10+
char *UrlToKey(char *url) {
11+
char *key = NULL;
12+
unsigned int hash = 1853;
13+
int i = 0;
14+
15+
while (i < strlen(url)) {
16+
hash = ((hash << 5) + hash) + url[i];
17+
i++;
18+
}
19+
20+
key = (char*)calloc(32, 1);
21+
snprintf(key, 32, "http://tinyurl.com/%X", hash);
22+
return key;
23+
}
24+
25+
/** Encodes a URL to a shortened URL. */
26+
char* encode(char* longUrl) {
27+
Hash *entry = NULL;
28+
char *key = NULL;
29+
key = UrlToKey(longUrl);
30+
HASH_FIND_STR(root, key, entry);
31+
if (!entry) {
32+
entry = malloc(sizeof(Hash));
33+
entry->key = key;
34+
entry->value = longUrl;
35+
HASH_ADD_KEYPTR(hh, root, key, strlen(key), entry);
36+
} else {
37+
free(key);
38+
}
39+
return entry->key;
40+
}
41+
42+
/** Decodes a shortened URL to its original URL. */
43+
char* decode(char* shortUrl) {
44+
Hash *entry = NULL;
45+
HASH_FIND_STR(root, shortUrl, entry);
46+
if (entry) {
47+
return entry->value;
48+
}
49+
return NULL;
50+
}
51+
52+
// Your functions will be called as such:
53+
// char* s = encode(s);
54+
// decode(s);
55+

0 commit comments

Comments
 (0)