Hacker News new | past | comments | ask | show | jobs | submit login

So you ended up using a tree to hold your tree nodes. I guess that was good enough for your purpose, but the article is discussing an optimized implementation.



std::unordered_map is general a hash table, is it not?


Sorry, I switched set and unordered set in my mind. Still, a generic hash table isn't going to match a tailored data structure.


I mean, it might. I only had to construct one trie, and I used it hundreds of millions of times, so O(1) child (hash) lookup ended up being faster than the O(log(n)) binary search lookup, at best, from the data structure described in the article. And since the data structure in the article wastes some space as well, I may have even used a similar amount of storage.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: