Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

please help me to figure out this program Write a C++ program that: 1) defines a

ID: 3653454 • Letter: P

Question

please help me to figure out this program Write a C++ program that: 1) defines a primeFilterBST type that: a. provides all the capabilities of a standard BST search, insert, delete, traverse b. additionally, provides the capability to identify all the prime numbers stored in the tree c. implements all traversals NON-RECURSIVELY 2) tests this primeFilterBST type on integer data a. reads in integer data from P3Input.txt file b. stores all integers, in order read, in primeFilterBST object. 3) after initializing the primeFilterBST with all data from the input file a. deletes all prime numbers from the primeFilterBST b. dumps the remaining content of the primeFilterBST object to output file called P3Output.txt

Explanation / Answer

a. provides all the capabilities of a standard BST search, insert, delete, traverse