What is the page?

This is a page for Assignment 9: HTMLAndCSS for CS400.

What is a Binary Search Tree?

The binary search tree data structure is an expansion of the binary tree strucutre where data is contained within a node that has a maximum of 2 children nodes it connects to. In this specific structure, the current node's child on the left must be smaller in comparison to its data, and its child on the right must have larger data than its own.

Why are Binary Search Trees useful?