vote up 21 vote down star
23

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.

flag

Dupe-ish: stackoverflow.com/questions/500607/… – Dana Mar 17 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 at 3:08

closed as exact duplicate by bdukes, Dana, LFSR Consulting, Dervin Thunk, Simucal Mar 18 at 3:06

9 Answers

vote up 9 vote down

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|flag
Nice pointer, hadn't heard of them before! Thanks SquareCog :) – antti.huima Mar 18 at 18:11
vote up 3 vote down

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|flag
+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 at 16:11
vote up 3 vote down

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|flag
vote up 3 vote down

Cuckoo Hashing

link|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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

link|flag
vote up 1 vote down

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

link|flag
vote up 0 vote down

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

link|flag
Hi, David. would you mind providing a link to this, if you don't mind? – Dervin Thunk Mar 17 at 19:39
vote up 0 vote down

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

link|flag

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