What's the purpose in hashing information?

前端 未结 5 415
时光说笑
时光说笑 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:22

    Have you ever used a dictionary or a set? They're typically implemented in terms of a hashtable because the value associated with a key can be found quickly.

    {
    'WA': 'Washington',
    'WV': 'West Virginia',
    'WY': 'Wyoming'
    }
    

提交回复
热议问题