Binary Search Tree (C++)
Loading...
Searching...
No Matches
Queue.cpp File Reference

Implementation of the Queue class. More...

#include "Queue.h"
#include <iostream>

Go to the source code of this file.

Detailed Description

Implementation of the Queue class.

This file contains the implementation of the Queue class member functions, which are used to support non-recursive, level-order traversal operations within a binary search tree.

The implementation is intentionally pointer-based and avoids the use of STL containers or smart pointers to demonstrate fundamental memory management concepts in C++.

Definition in file Queue.cpp.