本文介绍了创建 Tinyurl 样式哈希的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有谁知道从字符串 (url) 生成看起来像 tinyurl 哈希的算法
does anyone know of an algorithm that generates hashes that look like tinyurl hashes from a string (url)
我认为要求是
区分大小写短的仅数字和字母还有什么?
case sensitiveshortnumbers and alphabets onlyanything else?
推荐答案
我不认为 tinyurl 会散列字符串;他们有一个数据库 ID (1, 2, 3),它被转换为基数 36 (0-9A-Z):http://en.wikipedia.org/wiki/Base_36
I don't think tinyurl hashes the strings; they have a database ID (1, 2, 3) which is coverted to base 36 (0-9A-Z): http://en.wikipedia.org/wiki/Base_36
这篇关于创建 Tinyurl 样式哈希的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!