Question
For this exercise, write a c++ program to implement BST sort and test it for correctness. As usual, your program will prompt for the name
For this exercise, write a c++ program to implement BST sort and test it for correctness. As usual, your program will prompt for the name of an input file and the read and process the data contained in this file. The file contains a sequence of integer values. Read them and construct a binary search tree from the values in the order they are read. Thus; the first number read will be the root of the tree. For this exercise, you may use dynamic data, but you should attempt to store the numbers in an array. You do not need to balance the tree as you construct it. When you have read the last value into the BST, conduct an inorder traversal to output the values in ascending order. Print them 10 to a line in a 5character wide field.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started