CMSC206 Data Structures
Fall 2017
Assignment 6
Due on Tuesday, December 12, 2017
This assignment contains TWO parts. Please read carefully before starting on the assignment.
Part #1: Write a Java prigram that uses the Binary Search Tree data type from class (provided here: BinaryTree, BST class will be provided on Tuesday, December 5) to do the following:
A. Use the add() method to add the following strings to the BST:
After adding the above, do a preorder, postorder, and inorder traversal (printing out each node as you visit). Also print out the number of entries in the tree, and its height. You will need to define the three methods: preOrder(), postOrder(), and inOrder() in the binary tree class and then use them.
B. Clear the tree, and print out the number of items and its height. Then add the above towns in ascending order. Print out the resulting tree's size, and height, and also the results of all three tree traversals.
Hand in a complete prinout of your program (you do not have to print out the code/classes already provided) along with the output.
Part#2: Redo Assignment#4 to use 1 entry per town (with a list of all zip codes) and entries stored in a Binary Search Tree (as implemented in the text or from Part#1 above) using the string TOWN+STATE as the ordering relation.
For demonstrating the correctness of your program, include a printout that shows the output from following queries:
Additionally, after reading in the input file, your program should print the height of the resulting tree.
The objective here is to compare the performance of your program from Assignment#3. As before, once you have completed the program, extend it to count the number of comparisons needed to answer a query. Then, for the input data above, compute the average number of comparions needed to answer a query, the average number of comparisions needed to answer a successful query, the average number of comparisons needed to answer an unsuccessful query. Hand the main program, and sample output(s) showing the correctness of your implementations. Also print out the height of the resulting tree and its size, after reading in the input (just once).
Perform a comparison of the average number of comparisons from Assignment#4 and from this one. Write a short analysis based on your results.