Binary Search Tree (C++)
Loading...
Searching...
No Matches
Node.h File Reference

Declaration of the Node class. More...

Go to the source code of this file.

Classes

class  Node
 Represents a node within a binary search tree. More...

Detailed Description

Declaration of the Node class.

This header declares the Node class used to represent individual nodes within a binary search tree (BST). The Node class encapsulates a single integer data value along with pointers to its left and right child nodes.

Implementation details are defined in Node.cpp.

Author
Arto Baltayan
Date
January 2026
Version
1.0

Definition in file Node.h.

Macro Definition Documentation

◆ NODE_H

#define NODE_H

Definition at line 20 of file Node.h.