Tagged Questions

69
votes
5answers
7k views

Why is it wrong to use std::auto_ptr<> with standard containers?

Why is it wrong to use std::auto_ptr<> with standard containers?
16
votes
5answers
2k views

In which scenario do I use a particular STL Container?

Greetings :) I've been reading up on STL containers in my book on C++, specifically the section on the STL and it's containers. Now I do understand each and every one of them have their own specific ...
6
votes
1answer
311 views

What is the difference between the standard library and the standard template library?

I keep seeing reference to both the C++ standard Library and the C++ Standard Template Library (STL). What is the difference between them? Wikipedia mentions that they share some headers but that's ...
3
votes
4answers
2k views

How to traverse a stl map/vector/list/etc?

In need to know how to traverse a stl map. I don't wanna use its key. I don't care about the ordering, just a way to access all elements it contains. Is there a way to do this?