What can you tell about modern data structures? We all know classic ones, like trees, tries, stacks, lists, B-trees and so on (I think a Cormen's book is a pretty good list of a "classic ones"). But what about recent researches? I can name at least 2 of them: finger trees and judy arrays. I would like to know more.

link|improve this question

50% accept rate
en.wikipedia.org/wiki/Kd-tree - references will lead you to many more. And xlinux.nist.gov/dads/ – Anycorn Feb 27 '11 at 2:31
12  
This is like asking about a modern version of a wheel, one without that boring old round shape. – Cosmin Feb 27 '11 at 2:31
1  
You might find some interesting material in these SO questions about advanced, complicated and cool data structures. – WReach Feb 27 '11 at 2:47
1  
Vote to close and move to Programmers. – sixlettervariables Feb 28 '11 at 17:46
1  
@sixlettervariables: Why move to Programmers? What's really subjective about it? If it's a real question there, it's a real question here. – David Thornley Feb 28 '11 at 18:47
show 5 more comments
feedback

closed as not a real question by Ferruccio, bmargulies, sixlettervariables, Kyle Rozendo, John Saunders Feb 28 '11 at 20:28

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

5 Answers

up vote 6 down vote accepted

That really depends on your definition of "recent.". CLRS contains a great number of data structures, but omits many of the structures that had been developed around that time. For example, the van Emda Boas tree, which allows for extremely fast storage and lookup of integers, had been developed by that time but was not mentioned anywhere.

A lot of modern research has been on cache-oblivious data structures, which are structures that take optimal advantage of the memory hierarchy subject to certain reasonable assumptions. Brodal is one researcher in this field who has produced many excellent structures of this sort.

Purely functional data structures which can be used in functional languages (or in imperative languages to guarantee persistence) are also an active topic of research. Chris Okasaki's work in this field has led to developments of new trees and priority queues, for example.

Distributed data structures are of great import these days. Google's BigTable is a great example. Similarly, concurrent or lock-free data structures have found their way into many programming languages (see, for example, Java's ConcurrentHashMap or CopyOnWriteArrayList).

Datat structures based on amortization are mentioned tangentially in CLRS, which does focus on the Fibonacci heap. However, the splay tree and skew heap structures also developed around the same time are not mentioned, though they are of great import today.

Probabilistic structures like the treap and skip list have had a lot of research activity, and are a great place to keep exploring. In a related vein, powerful hash tables like the cuckoo hash table or dynamic perfect hash tables are certainly worth looking into.

Data structures for computational geometry have had a look of focus these past few years, though regrettably I don't know about them, well enough to suggest any particular structures.

Data structures for string processing, namely the suffix tree, are extremely relevant in biocomputation and web searches. I don't think CLRS even mentions their existence. You should definitely look into them, though, since they are responsible for much of the new work in genomics.

Many researchers have put effort into building data structures that take advantage of the fact that modern machines can operate on multiple bits in parallel. Some structures like the fusion tree, exponential tree, or y-fast tree exploit these properties to sort and search in arrays of integers faster than the O(n lg n) barriers imposed in a naive comparison model.

This is just a small sampling of the new and cool structures out there. I hope it's a good starting point!

link|improve this answer
Neither CopyOnWriteArrayList, nor ConcurrentHashMap is a lock free structure. ConcurrentHashMap uses stripped locks (but can slow significantly during the virtual calls of Object.equals()) and CopyOnWriteArrayList uses a single lock on modify. – bestsss Feb 27 '11 at 11:07
@bestsss- True; I was going for "concurrent structures" rather than "lock-free structures" when describing these. That was a poor sentence on my part. – templatetypedef Feb 27 '11 at 11:17
CopyOnWriteArrayList doesn't scale well at all (if you have writers) and ConcurrentHashMap is not so good on truly multi-core (128+) systems (on top of poor caching semantics). – bestsss Feb 27 '11 at 11:28
feedback

Some of the relatively recent (as in the last 30 years) data structure innovations have been probabilistic ones, like Skip Lists. I find these particularly interesting, but I don't keep up on research. Reading recent ACM Transactions on Algorithms might help you find some interesting and cutting edge research.

But, most anything "new" is going to be highly specialized. It is only once in a very long while that a new but fundamentally important algorithm/structure is created (like lists, trees, etc).

link|improve this answer
feedback

Check this answer :)

link|improve this answer
feedback

There are many hundreds of specialized data structures. http://en.wikipedia.org/wiki/List_of_data_structures is a good start.

link|improve this answer
feedback

Cuckoo hashing is a scheme in computer programming for resolving hash collisions of values of hash functions in a table. Cuckoo hashing was first described by Rasmus Pagh and Flemming Friche Rodler in 2001.

http://en.wikipedia.org/wiki/Cuckoo_hashing

Then fresh ones are: Cache-oblivious data structures

link|improve this answer
feedback

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