C++ STL List Container – std::list
In this tutorial you will learn about C++ STL list container i.e. std::list and methods which can be applicable on it. List comes under sequence containers. List stores elements in non-contiguous memory locations. List works same as double linked list. It can traverse in both directions. This is the reason list is slow in traversing …
