Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在研究哈希算法。我已经学会了如何使用散列函数和在许多框架中实现的方法,但我需要知道如何自己实现散列函数或实现一个简单散列函数的基本步骤。
我在哪里可以找到这方面的信息?
有许多哈希算法可以实现,.Net 库本身提供了一堆。但是,如果你想实现一个,你需要先选择一个算法。以下是Tiger Hash的实现。另一个哈希函数实现是由Davy Landman实现的。查看代码可能会帮助您入门。