Posts Tagged "STL"

Iterators and STL Lists

You may have heard of an iterator. You might have even used one and hadn't even known it. Iterators are a common tool in all sorts of languages from C++ and the STL to .NET to java and beyond. When you use an array and loop through it or manipulate its "internal pointer" from subscript 1 to subscript 2 you are manipulating the most basic of iterators. In the later ...