Dubley linkedlist
Here we implement a doubly link with quite a rich set of APIs. We provide following apis:
push_frontpop_frontpush_backpop_backdeleteiter- Returns a double ended iterator. Stops returning values when pointers meet. Immutable, the list remains intact.inter_into- Returns a double ended iterator that consumes the elements. List becomes empty, oncethe iterator is fully traversed.