ORIGINAL
Loading...
Searching...
No Matches
chain.h File Reference

Non-cyclic doubly linked list implementation. More...

#include "doubleDirectionIterator.h"
#include "array.h"
#include "baseList.h"
#include "iterationStream.h"
Include dependency graph for chain.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  original::chain< TYPE, ALLOC >
 Non-cyclic doubly linked list container. More...
 
class  original::chain< TYPE, ALLOC >::Iterator
 Bidirectional iterator implementation for chain. More...
 

Namespaces

namespace  original
 Main namespace for the project Original.
 

Detailed Description

Non-cyclic doubly linked list implementation.

Provides a bidirectional linked list container with efficient front/back operations. Features include:

  • Constant time insertion/removal at both ends
  • Linear time random access
  • Safe element ownership through RAII