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

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

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

Go to the source code of this file.

Classes

class  original::forwardChain< TYPE, ALLOC >
 A singly linked list implementation. More...
 
class  original::forwardChain< TYPE, ALLOC >::Iterator
 Iterator for forwardChain, supports single-direction traversal. More...
 

Namespaces

namespace  original
 Main namespace for the project Original.
 

Detailed Description

Non-cyclic singly linked list implementation.

This file provides an implementation of a singly linked list with efficient front and back operations. The class includes:

  • Single-direction iterator support
  • Basic list operations such as push, pop, get, and indexOf
  • Memory management with custom node handling