Re: About std::list

Tech-Archive recommends: Fix windows errors by optimizing your registry



Hi Carl,

O(1) in search, O(1) in add/delete....
Sorry, I'm not so profound of stl :)
Is it a fat chance after summing up all the discussions?
Thanks
Jack

The container which may have the potential to come closest is
std::tr1::unordered_set (from TR1, supported by VC9) or stdext::hash_set

Does VC++ 9 Express support that?
And you meant if I had VC9 Express, I can use the TR1 functionalities?
Thanks





.



Relevant Pages

  • Re: About std::list
    ... I'm not so profound of stl:) ... Is it a fat chance after summing up all the discussions? ... The container which may have the potential to come closest is ...
    (microsoft.public.vc.language)
  • Re: About std::list
    ... I'm not so profound of stl:) ... Is it a fat chance after summing up all the discussions? ... Jack ...
    (microsoft.public.vc.language)
  • Re: About std::list
    ... Is it a fat chance after summing up all the discussions? ... other container if there are compelling reasons to do so. ... common mistake to use `std::list' for a small data set only ...
    (microsoft.public.vc.language)
  • Re: OO Style with Ada Containers
    ... Can you convince me that Ada.Containers is closer to STL than to Java ... But the burden of proof is on you, to prove that the container library ... A generic algorithm in Ada would look something like: ... procedure Generic_Algorithm (C: Cursor); ...
    (comp.lang.ada)
  • Re: VC9: STL: hash_set/map : hash_compare without operator < ???
    ... hash class and for an equal_to class. ... You mean the C++ standard library, not the STL. ... while the other must yield false, provided that the elements are not equal. ... This requires that the container can store multiple ...
    (microsoft.public.vc.language)