Question: Using an object-oriented language of your choice, build a class called BST with the following methods: 1. void add(int i) 2. bool contains(int i) 3.

Using an object-oriented language of your choice, build a class called BST with the following methods:

1. void add(int i)

2. bool contains(int i)

3. void inOrderTraversal() /* writes the values of the tree to standard output using an in-order traversal */

4. void preOrderTraversal() /* writes the values of the tree to standard output using a pre-order traversal */

5. void postOrderTraversal() /* writes the values of the tree to standard output using a post-order traversal */

Include a separate class with a main method that demonstrates all of the class functionality. You may implement the BST with either an array or a linked structure.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!