Balancing binary search trees

Assignment Help JAVA Programming
Reference no: EM13673949

Balancing Binary Search Trees
1. Project Specification
The search effort for locating a node in a Binary Search Tree (BST) depends on the tree shape (topology). For a BST with n nodes the ACE value is defined (Wiener and Pinson) as the Average Comparison Effort for locating a node in a tree by summing all comparison operations for all tree nodes and dividing the result by the total number of tree nodes:
    for (int level = 0, sum = 0; level < treeHeight; level++ ) {
        sum += numberOfNodesAtLevel(level) * (level + 1)
    }
    ACE = sum / n
When the average comparison effort (i.e. the ACE value) gets over a certain threshold or after a certain number of tree insert/delete operations, for optimizing the search process, a tree balance operation should be executed resulting a tree whose height equals |_ log n _| + 1 (or floor(log n) + 1), thus requiring at most  |_ log n _| + 1 (or floor(log n) + 1) comparison operations to identify any tree node. 
For a given BST with n nodes we define MinACE as the minimum value of ACE and MaxACE as the maximum value of ACE. MinACE value for a BST with n nodes, corresponds to the ACE value calculated for a BST of height floor(log n) + 1 which has all levels completely full, except for the last level. ACE value of a balanced BST equals MinACE. MaxACE value for a BST with n nodes corresponds to the ACE value calculated for a BST which degenerates into a linear linked list with n nodes.
Part 1 
Consider the file BST.java (a link to this file is provided below for downloading purposes) which defines a generic Binary Search Tree class. 
Enhance the BST class with the following methods for doing experiments of balancing binary search trees.
treeHeight, calculates tree height;
nodeBalanceLevel calculates the balance level of a given node as the difference between the height of its left subtree and the height of its right subtree;
numberOfNodesAtLevel calculates the number of nodes at the specified level;
calculateACE, calculates the ACE value according to the above algorithm;
calculateMinACE, calculates the minimum value of the ACE;
calculateMaxACE, calculates the maximum value of the ACE;
needsBalancing, evaluates whether this BST needs to be balanced or not. We consider that a BST needs to be balanced when its ACE value is greater than K * MinASE where K = 1.25;
balanceBST, executes the balance operation on this BST;
Additional methods may be added if necessary. 
The enhanced BST class should compile without errors.
Part 2
Design and implement a driver program TestBST and the test cases for testing the methods implemented in Part 1. The driver program should build an initial BST whose nodes contain positive integer values taken from an input file. In the input file, the values should be separated by the semicolon character. After building the BST, in a loop, the program should invite the user to select for execution one of the following operations: (1) in-order tree traversal, (2) pre-order tree traversal, (3) calculateACE, (4) calculateMinACE, (5) calculateMaxACE, (6) numberOfNodesAllLevels (this operation displays the number of nodes at each  level of the tree), (7) treeHeight, (8) nodeBalanceLevel (9) needsBalancing, (10) balanceBST, (11) insert value, and (0) exit the loop and the program. As a result of each operation execution, relevant information will be displayed to the user. For example, as a result of executing the in-order traversal, the values of the tree nodes should be shown to the console or, as a result of executing the calculateACE operation, the ACE value should be displayed to the console.
Notes. 
1. If an operation requires additional information, the user will be prompted to enter it.
2. The input file (a simple .txt file) should be generated by the students using a simple text editor such as Notepad.
3. You may assume that there are no errors in the input file structure.
4. Tree root is considered as located at level 0. Tree height will be considered by counting the nodes, starting with the root, along the longest path.
2. Submission Requirements
Submit the following before the due date listed in the Calendar:
1. All .java source files and the input file.2. A document file including relevant screenshots showing program execution as a result of test cases. 

Reference no: EM13673949

Questions Cloud

Modify the pseudocode design : Modify the pseudocode design
The executive summary is a brief synopsis of the paper : Completed only after the rest of the paper has been completed, the Executive Summary is a brief synopsis of the paper with a solid conclusion. Describe the central problem that will be addressed and why it was chosen. Explain the objectives and wh..
Tough face a manufacturer of rock climbing gear : Tough face a manufacturer of rock climbing gear
Display all the columns from the orders table : Display all the columns from the Orders table that were paid with a Visa Card and have been shipped to the customer (hint: not a null). Order results by the Item Price in descending order.
Balancing binary search trees : Balancing Binary Search Trees,  Consider the file BST.java (a link to this file is provided below for downloading purposes) which defines a generic Binary Search Tree class.
Calculate the quantity of energy released to a person : When 1 mol of glucose is burned, 2802.5 KJ of energy is released. Calculate the quantity of energy released to a person by eating 5.00g of glucose in a candy
Cost of flying listed below are costs : Cost of flying listed below are costs
The probability that a given bird house : The probability that a given bird house will be returned for a refund is 0.04. Suppose that 30 bird houses are sold on a particular day. Find the probability that exactly 2 of those bird houses will be returned for a refund.
An average mouse weight below that weight : if mouse weights are normally distributed with a mean weight of 23 and SD of 4. With 10 mice per box, what weight should they use so that no more than 8% of the boxes will have an average mouse weight below that weight?

Reviews

Write a Review

JAVA Programming Questions & Answers

  Create a class named box that includes integer data fields

Create a class named Box that includes integer data fields for length, width and height. Create three constructors that require one, two and three arguments, respectively.

  Java''s type int has limit onhow large aninteger it can store

Java's type int has a limit on how large an integer it can store. This limit can be circumvented by representing an integer as an array of digits. Write an interactive program that adds two integers of up to 50 digits each.

  Your task in this assignment is to develop a graphical user

your task in this assignment is to develop a graphical user interface based java program that can communicate with a

  Sentence patterns and verb formulas

Provide the sentence pattern. Write out the sentence pattern - then write out the tense of the verb and provide the formula.

  Design a single class that expresses the commonality

Design a single class that expresses the commonality of these concepts.

  Constructor that accepts a file name as its argument

Write a class with a constructor that accepts a file name as its argument. Assume the file contains a series of numbers, each written on a separate line. The class should read the contents of the file into an array, and then displays the following..

  Programming exercises

Programming Exercises 1. Write an application named BadSubscriptCaught in which you declare an array of 10 first names. Write a try block in which you prompt the user for an integer and display the name in the requested position.

  Learn how expressions can be evaluated at run-time

Write a Java program (a collection of Java classes) including a class named ExpressionCalculator that contains a static main method. This main method will prompt the user to enter a constant expression.

  Task 1university grading system maintains number of tables

task 1university grading system maintains number of tables to store retrieve and manipulate student marks. these tables

  Create your own date class

You are to write a program that determines the day of the week for New Year's Day in the year 3000. To do this, you must create your own date class (MyDate) and use the following interface and main program:

  Driveway is a "last-in, first-out" stack. of course

Driveway is a "last-in, first-out" stack. Of course, when a car owner retrieves a vehicle that wasn't the last one in, the cars blocking it must temporarily move to the street so that the requested vehicle can leave. Write a program in Java that m..

  Write a program that draws a picture of a house

Write a program that draws a picture of a house. It could be as simple as the accompanying figure, or if you like, make it more elaborate

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd