config.py

Configuration constants for the Red-Black Tree implementation.

This module defines color constants used throughout the Red-Black Tree data structure to maintain the tree’s balancing properties.

config.COLORS

A namespace containing color constants for Red-Black Tree nodes.

COLORS.REDint

Constant representing a red node (value: 0)

COLORS.BLACKint

Constant representing a black node (value: 1)

Type:

SimpleNamespace