Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

BST Programming Challenges - Provide your implementation for all the functions in the following exercises, as well as your implementation of main() in HW3.cpp. -

image text in transcribedimage text in transcribedimage text in transcribedimage text in transcribedimage text in transcribed

BST Programming Challenges - Provide your implementation for all the functions in the following exercises, as well as your implementation of main() in HW3.cpp. - Adding private functions (in BST.h only) is allowed but modifying anything else is not allowed - Do not add or remove any files. Ex1. DLL2BST (15 points) Add a constructor that constructs the binary search tree from the given DLList. BST::BST (const DLL& list) Ex2. Find the Second Minimum (25 points) Write a member function called int BST::Find_Second_Minimum() const. The function retrieves the value of the node that has the second minimum value in the current BST. The second minimum is the element just greater than the minimum number. The running time of your implementation should be och). Ex3. Get the Longest Path (25 points) Write a member function called DlList BST:: get_longest_path() that returns a DLL of the longest path in the tree. For example, the red nodes in the following tree are on the longest path and should be added to the list. In case there are multiple longest paths, retrieve any of them. Ex4. Extract SubTree (25 points) Write a BST member function BST BST::Copy_subTree (const T& n) that will extract and return the subtree rooted at the node containing the value n. For example, on the following tree, the function should return the subtree shown to the right. The current tree The returned BST The current Tree after calling the function 12 12 30 2 9 30 9 14 39 14 39 3 Ex5. New Traverse (Bonus 20 points) Write a BST member function void BST::BFT() that will print the tree elements in the way that is shown in the next figure (100) 20 (200) 10 30 (150) (300 Ex6. Main (10 points) Write a main() function that tests the functions you implemented in exercises 1-5

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Concepts of Database Management

Authors: Philip J. Pratt, Joseph J. Adamski

7th edition

978-1111825911, 1111825912, 978-1133684374, 1133684378, 978-111182591

More Books

Students also viewed these Databases questions

Question

How does an abstract word differ from a concrete word? [LO-4]

Answered: 1 week ago