Results 1 to 4 of 4

Thread: C++ Collections Framework?

  1. #1
    Join Date
    Apr 2008
    Beans
    46

    Smile C++ Collections Framework?

    I've decided to learn C++ as I feel it would be handy. Java is taught language at my Uni and as such I've been spoiled by the Collections framework; I was wondering if C++ has any libraries which provide comparable implementations of popular data structures such as LinkedList, ArrayList etc?

    Any other tips would also be appreciated

  2. #2
    Join Date
    Jul 2007
    Location
    Magic City of the Plains
    Beans
    Hidden!
    Distro
    Xubuntu Development Release

    Re: C++ Collections Framework?

    Moved to Programming Talk.

  3. #3
    Join Date
    Jun 2007
    Location
    Maryland, US
    Beans
    6,288
    Distro
    Kubuntu

    Re: C++ Collections Framework?

    Standard C++ does not have the variety of Collection classes as Java, but other library extensions such as Boost offer additional choices. For standard C++, you could the peruse the following site (and I recommend you bookmark it!) for reference on the such containers as vector, set, map, etc.

  4. #4
    Join Date
    Apr 2008
    Beans
    46

    Re: C++ Collections Framework?

    Cheers! That looks like it's going to help a lot.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •