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

Red-Black Tree implementation header. More...

#include "allocator.h"
#include "comparator.h"
#include "couple.h"
#include "queue.h"
Include dependency graph for RBTree.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  original::RBTree< K_TYPE, V_TYPE, ALLOC, Compare >
 Red-Black Tree container implementation. More...
 
class  original::RBTree< K_TYPE, V_TYPE, ALLOC, Compare >::RBNode
 Internal node class for Red-Black Tree. More...
 
class  original::RBTree< K_TYPE, V_TYPE, ALLOC, Compare >::Iterator
 Bidirectional iterator for RBTree. More...
 

Namespaces

namespace  original
 Main namespace for the project Original.
 

Detailed Description

Red-Black Tree implementation header.

Provides a template-based Red-Black Tree implementation with:

  • Balanced tree operations
  • Iterator support
  • Memory management via allocators
  • Custom comparison support