CSE1030Z Lab 10

Recursive Data Structures

Wed Mar 27 2:30-4:00 PM
Thu Mar 28 2:30-4:00 PM

Introduction

This lab has you implement a recursive data structure called a binary search tree. You should review the course notes and lecture slides for linked list before attempting this lab.

Please submit your solution before 11:59PM Mon Apr 1 for the Wednesday lab, and before 11:50PM Tue Apr 02 for the Thursday lab.

Binary Search Trees

A binary search tree is a tree where each node has at most two child nodes (usually called the "left" child node and the "right" child node). The left child is the root of the left subtree and the right child is the root of the right subtree. Each node contains a data element, and the nodes of the tree are arranged according to the following 3 rules:

  1. all of the nodes in the left subtree have data elements that are less than the data element of the root node
  2. all of the nodes in the right subtree have data elements that are greater than or equal to the data element of the root node
  3. rules 1 and 2 apply recursively to every subtree

The structure of the binary search tree supports efficient sorting of and searching for elements in the tree. A variation of the binary search tree called a red-black tree is used to implement Java's TreeSet and TreeMap data structures.

An example of a binary search tree of three elements is shown in the figure below:

In this tree there is a root node with a data element of 50. The left child node has a data element of 27 (27 < 50). The right child node has a data element of 73 (73 ≥ 50).

An example of a binary search tree of eight elements is shown in the figure below:

In this tree there is a root node with a data element of 50. The data elements of all of the nodes in the left subtree of the root are less than 50. The data elements of all of the nodes in the right subtree of the root are greater than or equal to 50.

If we examine the subtree rooted at the node with data element 27, we see that rules 1 and 2 apply recursively to this subtree: the left child node has a data element of 8 (8 < 27) and the right child node has a data element of 44 (44 ≥ 27).

Similarly, if we examine the subtree rooted at the node with data element 73, we see that rules 1 and 2 apply recursively to this subtree: all of the nodes below the root node of 73 have data values less than or equal to 73.

Adding an element to a binary search tree

The recursive structure of the binary search tree leads to recursive algorithms that operate on the tree. Consider adding an element to a binary search tree; for example suppose that we want to add the element 19 to the previous tree:

If there is a root node, we compare the element 19 with the data in the root node; because 19 is less than 50, we know that the element must be added to the left subtree. We now examine the left subtree that is rooted at the node with data element 27; because 19 is less than 27, we know that the element must be added to the left subtree. We now examine the left subtree that is rooted at the node with data element 8; because 19 is greater than or equal to 8, we know that the element must be added to the right subtree. Because the right subtree is empty, we create a new node with data element 19 and set the right child node to the new node.

Question 1: Complete the implementation of BinarySearchTree

Complete the implementation of BinarySearchTree. The API for all methods (private and public) can be found here:

Starter code can be found here:

A JUnit tester can be found here:

You need to implement three methods:

private static <E extends Comparable<? super E>> void add(E element, Node<E> subtreeRoot)

private static <E extends Comparable<? super E>> boolean contains(E element, Node<E> subtreeRoot)

private static <E extends Comparable<? super E>> String toString(Node<E> subtreeRoot)

A Note on Syntax

You are asked to implement a binary search tree using generics. In other words, we should be able to create a tree that holds elements of any type that has a natural ordering:

BinarySearchTree<Integer> t = new BinarySearchTree<Integer>();
BinarySearchTree<String> u = new BinarySearchTree<String>();
BinarySearchTree<Date> v = new BinarySearchTree<Date>();

The tree should be able to hold elements of any type that implements the Comparable interface. In Java, this is expressed as follows:

public class BinarySearchTree<E extends Comparable<? super E>>

E is used as the name of the type of element that the tree holds. E extends Comparable<? super E> means that the type E must also implement the Comparable interface (so that we can perform the less than and greater than or equal to comparisons using compareTo). The type E does not need to implement Comparable<E>, however. As long as E implements Comparable<T> where T is a super class of E we can still use compareTo to compare elements. The actual type T is unimportant. The syntax ? super E is used to indicate that there is some unnamed type that is a super class of E.

Submit your work

Submit your program using the command:

submit 1030Z L10 BinarySearchTree.java