There are a subset of algorithms and data structures that are very common, well-studied and very helpful. Examples of these are Topological sort, quicksort, depth-first search; on the other hand, dictionaries, trees, linked-lists and to a lesser extent red-black trees, and tries, are examples of the latter.

However, there are other algorithms and DS that are not mainstream (not easily found in books) that we have learned on our own, have become a useful tool, and we are proud of using because they were hidden... maybe we found it in a dark paper from the dawn of computation in the 60s and it is still useful today, or we just made them up (why not?). My pet one is binary decision diagrams (BDDs). What is yours?

EDIT: A pity this was closed, but in all fairness, it was a duplicate, even if new answers were provided. In a scholarly fashion, I will summarize and thank everybody for answering. However, to appease my sense of "duplicate failure", I should also pay my respect to the original poster of the question (f3lix) and to the StackOverflow community by summarizing both posts, so a complete document remains. Thus (!), here is the list of algorithms and data structures that are not that common, duplicates removed:

I hope this will be useful as a reference at some point.

link|improve this question

Dupe-ish: stackoverflow.com/questions/500607/… – Dana Mar 17 '09 at 18:03
@Dervin Thunk, it is a good question. It just has been asked before. I do it all the time as well. Sometimes after doing an SO search and a google (site:stackoverflow.com) search and I STILL end up posting a dupe question. – Simucal Mar 18 '09 at 3:08
feedback

closed as exact duplicate by bdukes, Dana, Gavin Miller, Dervin Thunk, Simucal Mar 18 '09 at 3:06

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

9 Answers

up vote 10 down vote accepted

I really like Bloom Filters for checking if an item has been seen before, when dealing with millions of items.

Dictionaries or Maps or Hashtables are usually used for this purpose, but Bloom Filters give you significantly better memory usage for a tiny (controllable) accuracy trade-off.

link|improve this answer
Nice pointer, hadn't heard of them before! Thanks SquareCog :) – antti.huima Mar 18 '09 at 18:11
feedback

Not necessarily my pet algorithm, but definitely one of the most memorable is "maintaining order in a list" :) not only because it sounds first rather trivial... isn't list about maintaining an order? I used this once in a real-life project, and it took a while to find it. And it was very useful! Here one variant solution (PS paper).

link|improve this answer
+1. I almost reflexively thought "Use a heap instead!" but actually the link you provided solves a different (and interesting) problem to the problem solved by heaps. :) – j_random_hacker Mar 18 '09 at 16:11
feedback

An operating systems course I took in college opened my eyes to quite a few algorithms I wouldn't have thought about otherwise. I particularly liked the Elevator algorithm. The instructor for the course presented the real-world elevator scheduling problem to us, made us come up with our own solutions, then showed us how it related to disk scheduling. It was quite the "Aha!" moment.

link|improve this answer
feedback

Cuckoo Hashing

link|improve this answer
feedback

I like to write lexers/parsers by hand.

The challenge is to be as robust as possible, and to provide the most optimal error strategy (both recovery and messages).

link|improve this answer
feedback

Since the Bloom filter answer made me think of probabilistic structures: Skip List.

link|improve this answer
feedback

Interval Skip List if only for the term "stabbing query". :)

link|improve this answer
feedback

I've had to implement modifiable priority queues (where items can be removed, or their priorities changed) twice.

link|improve this answer
Hi, David. would you mind providing a link to this, if you don't mind? – Dervin Thunk Mar 17 '09 at 19:39
feedback

And they're not exactly obscure, but they are underused IMO: NFA.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.