hi,
i need a stl list to read a vector.
I have a vector "vec" and i want to create a stl list, where i can insert new points to the vector list and remove.
The STL list has a constructor that takes iterators. You can use that to initialize the list with the contents of your vector:
std::list<T> myList(vec.begin(), vec.end());
T is the same type as what vec holds.
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.