vote up 2 vote down star

Please, excuse my ignorance about this subject :)

C++0x is introducing unordered_set which is available in boost and many other places. What I understand is that unordered_set is hash table with O(1) lookup complexity. On the other hand, set is nothing but a tree with log(n) lookup complexity. Why on earth would anyone use set instead of unordered_set? i.e is there a need for set anymore?

flag

Your question is fundamentally asking if is there a need for a tree anymore. – Vinko Vrsalovic Aug 28 at 23:23
I think I stated it clearly in the first line, that this is somehow stupid question. I was missing something and now I got the answer :) – AraK Aug 28 at 23:30

7 Answers

vote up 23 vote down check

When, for someone who wants to iterate over the items of the set, the order matters.

link|flag
I think your answer is what I am missing :) – AraK Aug 28 at 22:57
vote up 2 vote down

Consider sweepline algorithms. These algorithms would fail utterly with hash tables, but work beautifully with balanced trees. To give you a concrete example of a sweepline algorithm consider fortune's algorithm. http://en.wikipedia.org/wiki/Fortune%27s%5Falgorithm

link|flag
vote up 10 vote down

Unordered sets have to pay for their O(1) average access time in a few ways:

  • set uses less memory then unordered_set to store the same number of elements.
  • For a small number of elements, lookups in a set might be faster than lookups in an unordered_set.
  • Even though many operations are faster in the average case for unordered_set, they are often guaranteed to have better worst case complexities for set (for example insert).
  • That set sorts the elements is useful if you want to access them in order.
  • You can compare different sets with == and the like. unordered_sets are not required to support these operations.
link|flag
+1, all excellent points. People tend to overlook the fact that hashtables have O(1) average-case access time, meaning they can occasionally have big delays. The distinction can be important for real-time systems. – j_random_hacker Sep 3 at 8:44
vote up 6 vote down

Because std::set is part of Standard C++ and unordered_set isn't. C++0x is NOT a standard, and neither is Boost. For many of us, portability is essential, and that means sticking to the standard.

link|flag
1  
If i understand him correctly, he is not asking why people currently still use set. He is informing himself about C++0x. – Johannes Schaub - litb Aug 28 at 22:58
2  
Maybe. I thought everyone knew hash tables and trees solved different problems. – Neil Butterworth Aug 28 at 23:04
2  
Maybe, except me! – AraK Aug 28 at 23:10
vote up 1 vote down

If you want to have things sorted, then you would use set instead of unordered_set. unordered_set is used over set when ordering stored does not matter.

link|flag
vote up 9 vote down

Whenever you prefer a tree to a hash table.

For instance, hash tables are "O(n)" at worst case. O(1) is the average case. Trees are "O(log n)" at worst.

link|flag
3  
/Balanced/ trees are O(ln n) in the worst case. You can end up with O(n) trees (essentially linked lists). – strager Aug 28 at 22:50
1  
If you can write a reasonably intelligent hash function, you can almost always get O(1) perf out of a hashtable. If you can't write such a hash function of if you need to iterate "in order" over your set, then you should use a tree. But you shouldn't use a tree because you're scared of "O(n) worst-case performance." – Justin L. Aug 28 at 22:54
1  
stager: To be pedantic, yes. However, we're talking about set in C++ which is typically implemented as a balanced binary search tree. We should have specify the actual operation to talk about complexity. In this context it's obvious that we're talking about lookup. – Mehrdad Afshari Aug 28 at 22:54
1  
Justin L: It's just one reason you might prefer a tree. The core of my answer is the first line. Whenever you prefer a tree data structure to a hash table. There are plenty of cases that trees are preferred to hash tables. Hash tables particularly suck at things like "range intersections." – Mehrdad Afshari Aug 28 at 22:56
1  
stl trees are almost universally implemented red-black trees, an advanced self balancing tree. There really are cases where O(n) look up in the worse case is not acceptable. A web service that provide and interface to store user values should not use a hash map, as a malicious user could effectively create a DoS by storing specially crafted values. Critical, time sensitive systems may also not allow for O(n) lookup, air traffic control etc. Though in general you're right, use the hash maps by default and only switch the tree version when you've got a real need. – Caspin Sep 2 at 19:44
show 1 more comment
vote up 1 vote down

Off hand, I would say it is convenient to have things in a relationship if you're looking to convert it into a different format.

It is also possible that whilst one is faster to access, the time to build the index or the memory used when creating and/or accessing it is greater.

link|flag
+1, Big Oh notation hides the constant factors, and for typical problem sizes it's often the constant factors that matter most. – j_random_hacker Sep 3 at 8:50

Your Answer

Get an OpenID
or

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