...

/

Implementing a Binary Search Tree in C#

Implementing a Binary Search Tree in C#

This lesson covers the implementation of a very basic binary search tree in C#.

Introduction

Node class

To implement a BST, the first thing needed is a ...