Implementing a Binary Search Tree in C#
This lesson covers the implementation of a very basic binary search tree in C#.
We'll cover the following...
Introduction
Node
class
To implement a BST, the first thing needed is a ...