| CSC 207 | Grinnell College | Fall, 2018 |
| Algorithms and Object-Oriented Design | ||
This lab provides more experience with binary search trees, building on the previous lab on trees.
When submitting this lab, use the github URL: https://classroom.github.com/g/DzlMFzfP
Work in this lab involves the following classes that were introduced in the previous lab.
Be sure that these classes are available within the eclipse environment and available for further development.
The reading for this lab defines the length of a path within a tree, the depth or level of a node within a tree, and the height of a tree.
Today's reading draws upon Computer Science 2: Principles of Software Engineering, Data Types, and Algorithms by Henry M. Walker [Scott, Foresman and Company, 1989]. In particular, the reading defines when a tree is balanced or completely balanced.
Consider tree B above, and consider tree A below:
Determine if either of these trees is balanced. In each case, justify your answer.
Today's reading also defines when a tree is height-balanced.
Apply this definition to determine if the trees in Tree C and Tree D (below) are height balanced.
In the original Tree B, suppose we wish to remove the root, node k. We cannot just remove node k, since it connects two subtrees. Also, we cannot just move the left or right subtree upward to the root, because we must include the other subtree in the final structure as well. Instead, we first consider what values might replace 'k' in the root. In order to retain the ordering of nodes within a search tree, there are only two choices:
Consider a binary search tree of Entry objects, as defined at the start of this lab and in the reading. Write a method
Entry findLongest (BSTree<Entry>)
that searches the tree for the Entry with the longest first
name (i.e., the first name of the Entry has the most number
of letters). In case the first names in two or more Entrys
have the same number of letters, findLongest should return
the Entry for which the first name comes last in dictionary
order.
(As with other steps in this labs, the use of global
variables for this method wil be subject to a substantial
penalty — up to 75%.)
For your findLongest method in step 11, suppose the initial tree contains n nodes, and suppose the height of the overall tree is k. Analyze your code to determine the order O(???) of the algorithm— giving both the careful analysis of work done and a clear statement of the conclusion.
|
created 21 April 2000 revised 24 March 2005 revised 24 April 2012 last revised 3 November 2018 |
|
| For more information, please contact Henry M. Walker at walker@cs.grinnell.edu. |