Examples of using a DoubleLinkedList.
#include <stdexcept>
#include <iostream>
int main(int argc, char**argv) {
std::cout << "List [ ";
std::cout << *iter << " ";
}
std::cout << "]" << std::endl;
return 0;
}
Double Linked List defintion.
DoubleLinkedList which can be iterated via DoubleLinkedList::iterator.
void push_back(const value_type &value)
Insert value as the last item in this list.
Iterator class that works genericly on a List containing Node elements with data of type T.