Question: Hibbard deletion degradation. Write a java program that takes an integer N from the command line, builds a random binary search tree of size N,
Hibbard deletion degradation. Write a java program that takes an integer N from the command line, builds a random binary search tree of size N, then enters into a loop where it deletes a random key (using the code delete(select(Std Random .uniform(N)))) and then inserts a random key, iterating the loop N2 times. After the loop, measure and print the average length of a path in the tree (the internal path length divided by N, plus 1). Run your program for N = 102, 103, and 104 to test the somewhat counterintuitive hypothesis that this process increases the average path length of the tree to be proportional to the square root of N. Run the same experiments for a delete() implementation that makes a random choice whether to use the predecessor or the successor node.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
