Question: EX 1 Write a BST function named common _ ancestors that takes two values of templated type T as arguments: DLList common _ ancestors (
EX Write a BST function named commonancestors that takes two values of templated type T as arguments:
DLList commonancestorsconst T & val const T & val const
The function should search the BST for these values and return a Doubly Linked List DLList containing the values of the common ancestors of val and val
Here's what the function should do in details:
If both val and val are found in the BST:
The function should return a DLList containing all the nodes that are ancestors of both val and val
If either val or val is not found in the BST:
The function should return an empty DLList The function should assume the BST has unique values for each node no duplicate values
Note. You are not allowed to declare any additional data members, but you can define helper functions in the private section of the BST class. use only include string, do NOT use vector or any other STL
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
