Overview

In this assignment, you'll apply what youve learned about binary search trees to implement a Counting Binary Search Tree. You will be implementing a series of methods providing functionality for a binary search tree that not only stores elements, but how many occurrences of them there are.

Detailed Requirements

Overview

The assignment starter project provides code in two files: Node.java, and CountingBST.java. The Node class is as follows:

public class Node {
private String element;
private int count;
private Node left;
private Node right;
public Node(String element) {
this.element = element;
this.count = 1;
}
// Getters and setters (details below).
}

For this assignment, Node looks similar to the one we've used in class, but with two differences: each node stores string elements instead of integers, and each node tracks how many occurrences of each element there are with the count variable. As you can see from the constructor, a new node is created with an initial count of one.

Node defines how our Counting Binary Search Tree works. It is a data structure that follows the standard rules of a binary search tree, but is able to store multiple copies of the same element by increasing the count tracked by its node.

Node defines some simple getter methods for a node's element, its count, and its left and right child nodes. In addition, it defines the following two methods:

public class Node {
// ...
public void incrementCount() {
count++;
}

public void decrementCount() {
if (count > 0) {
count--;
}
}
// ...
}

Calling incrementCount on a Node will increase its count by one, and calling decrementCount on a Node will decrease its count by one. If a node's count is already at 0, decrementCount will leave it at 0, so itll never become negative.

CountingBST defines several methods that you will need to implement to complete the required functionality for the data structure:

public Node insert(Node root, String newElement) {
// ...
}
public int getCount(Node root, String element) {
// ...
}
public boolean isTreeDead(Node root) {
// ...
}
public Node remove(Node root, String element) {
// ...
}

Printing the Tree

I've provided a print method in CountingBST that you can use to print out the contents of a counting binary search tree. It will attempt to print the contents of each node in the tree in alphabetical order, which will only work if youve correctly implemented insert to respect the rules of binary search tree.

The printed line's format will look something like:

[mango: 0, pierogi: 2, ramen: 1, turkey: 4]

Each node in the printout shows its string element followed by its count. All nodes are printed, including those with a count of zero. The nodes are printed in alphabetical order by element.

You can call the function to verify whether your code is working as expected. The run method makes a series of calls to the four methods listed above and prints out the tree in between.

insert

insert takes two parameters: the root node of a counting binary search tree and a new element to insert into the tree.

  • If the tree does not already contain a node with the element, a new node should be created and inserted at the right location with an initial count of one.
  • If the tree does already contain a node with the element, that existing node should have its count incremented by one. No new node should be created or inserted.

Either way, the method is expected to return the root of the tree.

Once completed, you should be able to run the CountingBST program and verify that the first two printed lines yield the expected results.

getCount

getCount takes two parameters: the root node of a counting binary search tree and an element to search for. It should return the number of times that element appears in the tree. If insert was implemented correctly, there will be at most one node with the specified element, with the node storing the total count. If there is no node, getCount should return zero.

Once completed, you should be able to run the CountingBST program and verify that the next several printed lines yield the expected results.

isTreeDead

isTreeDead is a method that will help us improve our implementation of remove later on (see the next section for details on how). isTreeDead takes the root of a tree as its only parameter and should return true if every single node in that tree has a count of zero, and false otherwise.

isTreeDead will need to be solved recursively. However, because the binary tree is a recursively defined structure, the recursive implementation for this algorithm ends up being significantly simpler than other recursive problems you've tackled in the past. Consider a few things:

  • An empty tree is considered dead.
  • In any tree, the root must have a count of zero for the tree to be dead.
  • The root has a left child and a right child, each of which is the root of a smaller binary tree. Making a recursive isTreeDead call to each of these two trees will tell you whether the left subtree is dead and whether the right subtree is dead. Consider how you can use that information to determine if the original tree is dead.

You will not be able to test whether isTreeDead works until remove is implemented as well.

remove

It should find the node containing the element, and simply decrement its count. If that count happens to reach zero, then the element is technically not in the data structure, even if the node still sticks around. Thankfully, this allows us to skip the complicated node removal work.

There is a downside to this approach. As more and more elements are removed, their nodes will still stick around in the tree as "dead" nodes containing counts of zero. Their presence still contributes to the run time of searching through the tree, as they'll be used in comparisons. You will need to use the isTreeDead method you implemented to make an optimization that will mitigate this problem.

Every time you remove an element, there is a chance that its node is now the root of a dead tree. You can check that by calling isTreeDead on the node in question. If you find that that is the case, you should completely remove that node (and its children) from the original tree structure by setting its parent node's left or right child to null. Doing so will eliminate nodes when its safe to do so, reducing the number of useless nodes in the original tree structure.

Once completed, you should be able to run the CountingBST program and verify that the last printed line yields the expected results.

Academic Honesty!
It is not our intention to break the school's academic policy. Posted solutions are meant to be used as a reference and should not be submitted as is. We are not held liable for any misuse of the solutions. Please see the frequently asked questions page for further questions and inquiries.
Kindly complete the form. Please provide a valid email address and we will get back to you within 24 hours. Payment is through PayPal, Buy me a Coffee or Cryptocurrency. We are a nonprofit organization however we need funds to keep this organization operating and to be able to complete our research and development projects.