vote up 0 vote down star
3

We all, as programmers, have something that we really like and always when we are trying to solve a problem we would like to solve it on our personal choice of programming language/algorithm.

But the question that I've chatted with other developers at work about, was "Which is your favorite data structure" so I've met developers who was using arrays and didn't want to hear about other data structures but some others like me who was using linked lists.

I know sometimes you have to choose a data structure which will fit on the solution but sometimes you love one and you use it at every time you have to store some data in memory.

So please don't start a flame war or something but I didn't find some similar question like this and I started up this question.

So folks which is your favorite data structure? I am a big fan of linked lists.

flag
show 18 more comments

31 Answers

1 2 next
vote up 0 vote down

ThreadSafeObservaleCollection<T> - custom. Dispatches events to the UI thread.

IDictionary<string, Delegate>, IList<T>

link|flag
vote up 2 vote down

I've come to the view that a big problem in programming is confusion between means and ends. Data structures are ways to accomplish things, not ends in themselves.

What I prefer to see in a programmer is knowledge of a variety of techniques and wisdom about how to match them up to the requirements of any given problem.

If you are sick and go to the doctor, do you want to hear all about the wonderfulness of different kinds of medicines and treatments, and which ones he thinks are really nifty?

No, you want him to be good at understanding what your specific problem is so he can apply just the right treatment, and as little of it as necessary.

link|flag
vote up 0 vote down

I like the hypergraph. :)

link|flag
vote up 0 vote down

Python lists and dictionaries

link|flag
vote up 0 vote down

I like java.util.Collection, myself.

link|flag
vote up 0 vote down

Graphs.

Such a versatile data structure when showing relationships between things. Graphs have a huge wealth of algorithms that can be used on them as well.

  • Need directions to get to your friends house? A path finding algorithm is used on a graph of the roads/intersections to find the fastest route.

  • Need to find the best way to route network traffic across a bunch of connections? The graph is your friend.

  • Want to implement a neural network to attempt to solve some interesting problem? Graphs again.

Steve Yegge briefly talks about them in his article Get That Job At Google:

Whenever someone gives you a problem, think graphs. They are the most fundamental and flexible way of representing any kind of a relationship, so it's about a 50-50 shot that any interesting design problem has a graph involved in it. Make absolutely sure you can't think of a way to solve it using graphs before moving on to other solution types. This tip is important!

link|flag
vote up 0 vote down

How about a nice streamed ResultSet. Lots of data, coming from a db, its a happy place.

link|flag
vote up 0 vote down

favorite little-known data structure: skip lists

I haven't had occasion to use it much but Java 1.6 has an implementation ConcurrentSkipListMap.

Otherwise I like STL's std::deque; you get amortized O(1) performance for both insertion/deletion at either end, as well as random access (but not insert/delete) for any element if you know the index.

link|flag
vote up 0 vote down

I like arrays, there fast and simple.

link|flag
vote up 0 vote down

Python Dicts and Lists.

link|flag
vote up 1 vote down

Hands down: the Dict. Any language that lacks a good Dict with a syntactically pleasant foreach is crippled.

link|flag
vote up 0 vote down

Python dictionary, or any kind of map structure in any language. It helps me to prototype the classes without the syntactic overhead and later on I can refactor to classes. The more dynamic type system the language has, the merrier I am with the maps.

link|flag
vote up 0 vote down

XMLHttpRequest - The class that powers most AJAX-y functionality.

Dictionary is a close second, though.

As for the array vs linked list, I tend to find this to be much more specific implementation details than abstract concepts like a Stack or Queue. Of course I do remember learning how to use linked lists and arrays to implement the functionality of Stacks and Queues and this may cause me to have a different take than most others.

link|flag
vote up 1 vote down

Heaps.

I used to use these all the time for task queues on microcontrollers. Fast and compact.

link|flag
vote up 0 vote down

I don't use them very often but I love them,

C#:

  • LinkedList<T>
  • Stack<T>
  • Queue<T>
link|flag
vote up 0 vote down

This is nothing fancy, but I've found the TStringList in Delphi to be very handy.

It is basically an array of strings, with Insert, Delete, and IndexOf methods - not too different from the C# stringlist.

From a theoretical point of view, I always found binary trees to be a really elegant structure. I like them, even though I almost never have to use them.

link|flag
vote up 3 vote down

I'm surprised nobody has mentioned the Stack.

It's so versatile and elegant it can even be used as a memory architecture as in a Stack Machine as well as every day programming tasks.

link|flag
vote up 1 vote down

Triple graph.

link|flag
vote up 3 vote down

I like the trie data structure, because it makes everyone say "Don't you mean tree?"

link|flag
show 2 more comments
vote up 6 vote down

Very strange question... You use whatever is best suited for the task at hand...

link|flag
show 2 more comments
vote up 1 vote down

python tuple

link|flag
vote up 0 vote down

In C# any form of generics e.g. List, Dictionary etc

link|flag
vote up 2 vote down

I recommend the humble, null-terminated string.

link|flag
show 2 more comments
vote up 1 vote down
IDictionary<string,Delegate>

for 'touch-up' work

link|flag
vote up 0 vote down

I'm a really big fan of a two-dimensional 2x3 six-pack array. :)

link|flag
vote up 7 vote down

Each one has it's advantages and disadvantages. I try to pick the one that's suited to the requirements of where I'm using it... depending on size, expected usage, Do I only need to iterate through it? Only in one direction? Do I need to add, remove items dynamically, FIFO or LIFO, Do I need to be able to search it ? treat it as an array? etc..

link|flag
show 2 more comments
vote up 0 vote down

If I had to pick, it's the lowly array - simple, fast, and cheap.

Honestly, though - I don't care: I use the one I need for the job at hand :)

link|flag
vote up 3 vote down

In C, my favorite data structure is void *; it's just so darn flexible.

link|flag
show 2 more comments
vote up 0 vote down

As a Silverlight and WPF(.NET3.0) developer I like the "ObservableCollection<T>" - it is nothing but a special List<T> which helps in XAML bindings

link|flag
vote up 1 vote down

I typically wind up using the equivalent of a hash of hashes of hashes...up to however many dimensions I need. At least while I am developing. After I get the data shape riht in my mind I might change it.

link|flag
show 4 more comments
1 2 next

Your Answer

Get an OpenID
or

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