I find myself finding ways to use or implement variations of hash maps in my code, mainly because I love being able to perform an O(1) lookup of what I want to find.
What about you? What is your favorite data structure and why?
I find myself finding ways to use or implement variations of hash maps in my code, mainly because I love being able to perform an O(1) lookup of what I want to find.
What about you? What is your favorite data structure and why?
For further actions, you may consider blocking this person and/or reporting abuse
Antonio | CEO at Litlyx.com -
Balraj Singh -
Bruno Ciccarino λ -
Sukhpinder Singh -
Top comments (4)
I like tries because it's a simple example of a tree-like structure you use every day (e.g. dictionary/spellchecker).
Although, these applications might be using DAFSA..
Cool! I wasn't aware of that one! Thanks for sharing :)
I like dictionaries/hashes, the key/value pair seems to work best for me. And with Javascript, you can place a function, object or array as the value! That just feels really powerful.
100% agree!