What's the purpose in hashing information?

前端 未结 5 438
时光说笑
时光说笑 2021-01-31 10:44

After being taught how to create a hash table in class, I don\'t understand when hashing data would be useful. It seems to me that all hashing does is storing information in se

5条回答
  •  庸人自扰
    2021-01-31 11:40

    Hashing is a technique useful for fast key lookup. It allows one to more efficiently find a value rather than scanning a list from beginning to end.

提交回复
热议问题