Skip to article frontmatterSkip to article content

Project 11: Binary Search Trees

Objectives

  1. Practice building BST operations.
  2. Practice building recursive operations.
  3. Learn more about binary search trees.

Introduction

Accept the assignment and use git clone to create your copy of the code.

This project is:

As usual, you should use test-driven development to accomplish these tasks. Note that part of your grade is based on the thoroughness of your new tests for getHeight().

Adding getHeight()

The height of a tree with a root node is defined as the height of the node’s taller sub-tree, plus 1. As you can see, this is a recursive definition, which needs a base case. The base case is that if a node has no children, its height is 1.

Let’s give some examples to clarify:

Implement getHeight() now. Its implementation is similar to insert() or a traversal algorithm in that it uses recursion. The difference here is that each function returns an integer — the node’s height.

The Experiment

The height of a BST determines the speed of operations like insert() and contains(). If we build a “large” BST of N items (e.g., ~220), and that tree is balanced, then its height should be the minimal O(lg(N))O(lg(N)) (e.g., 20).

This week’s problem is to conduct a simple experiment to see how “tall” BSTs get, given random values. Our objective is to see how close we come to lg(N) height if we build large trees of N randomly ordered values.

Your repo contains two directories that each contain ten data files (randomInts01.txt, randomInts02.txt, ..., randomInts10.txt), each containing 2201=1,048,5752^{20}-1 = 1,048,575 randomly generated integer values. If these values were ordered in exactly the right way, we could build trees of height 20. (On the other hand, if they were ordered in exactly the wrong way, we could build trees of height 1,048,575!)

Your task is to write a simple program that prompts the user for the name of an input file, reads each value from that file, and inserts it into a BST. Your program should then display the height of the resulting BST.

There are minor details to keep in mind:

Since there are ten input files, you will need to run your program ten times. (Or find a clever way to automate this.) For each file, record the corresponding tree-height in a spreadsheet, and the number of duplicate values that were found. Given all ten heights, use the spreadsheet to calculate the minimum height, the maximum height, the average height, the median height, and the standard deviation of the ten heights. (Your spreadsheet will make each of these computations easy.) Finally, use your spreadsheet to create a bar-chart showing each of the ten heights, as a visualization of your data. Finally

Answer the following questions in your spreadsheet, below the chart:

  1. Is lg(N)lg(N) or NN a better approximation for your measured heights? Why?
  2. How much variance is there in the height of these trees? Is this surprising? Why or why not?
  3. How many duplicate values were there (on average)? Is this surprising? Why or why not?
  4. The “big Oh” notation O(f(n))O(f(n)) implies that there are constants aa and bb, such that a×f(n)+ba \times f(n) + b describes the reality for which O(f(n))O(f(n)) is an approximation. A balanced BST of NN items has height O(lg(N))O(lg(N)). Theoretically, there should be values aa and bb such that a×lg(N)+ba \times lg(N) + b describes the actual height of a BST built using random data. Using your experimental results, what is a reasonable value for aa?

Submission

Don’t forget to commit your code to your online repo on github.com so that the grader can grade it.

Grading Rubric

Total: 24 pts

Ways students have lost points in the past: