what are the recent dataStructure and algorithms that one should know?

Posted by Shamik on Stack Overflow See other posts from Stack Overflow or by Shamik
Published on 2010-06-18T14:35:31Z Indexed on 2010/06/18 16:43 UTC
Read the original article Hit count: 205

Filed under:
|

Recently I came across the SkipList data structure. It really helped me to solve one otherwise critical problem to be solved. I was struggling to solve the same problem with Balanced Binary tree but it became very complex as the tree needs to be always balanced and I wanted to know the existence of not only a particular value but values in certain range. SkipList helped me to solve that problem effectively. I am wondering what else data structures that I need to know? I know - Array, List, Stack, Queue, Linked List, hashtable, tree and its different forms like B-tree, Trie etc. Would like to know if you find some other data structure/concept very interesting to know yet effective enough to be used in a daily development cycle.

© Stack Overflow or respective owner

Related posts about algorithm

Related posts about data-structures