Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • Looks much easier to implement, but as I mentioned in another comment I'm doing a school project on C++ and we've hardly covered any C++-specific advantages. I'm not allowed to use stuff we haven't covered in the project, so for now I think I have to stick to the C alternative of creating dynamically linked lists. Commented Oct 1, 2010 at 18:25
  • @Pieter - you may not be allowed to use STL etc, but still you don't have to do it in C fashion, with brute-force memory management via new/delete/malloc/free and raw pointers everywhere. Commented Oct 1, 2010 at 19:02