What exactly are hashtables?

前端 未结 3 797
无人及你
无人及你 2021-01-05 10:09
  • What are they and how do they work?
  • Where are they used?
  • When should I (not) use them?

I\'ve heard the word over and over again, yet I

3条回答
  •  迷失自我
    2021-01-05 10:41

    Wikipedia seems to have a pretty nice answer to what they are.

    You should use them when you want to look up values by some index.

    As for when you shouldn't use them... when you don't want to look up values by some index (for example, if all you want to ever do is iterate over them.)

提交回复
热议问题