Directions
The file must be called binaryTree.cpp
Main Method
1. Create Binary Search Tree that will accept integers in this order: 35, 18, 48, 72, 60, 25
2. Refer to page 537 Example 10-8 for example code.
3. Ask user for input and search tree utilizing integer input.
4. Return “True” if integer is found or “False” if number is not found in tree.
5. Methods utilized are up to your discretion.
6. See example below for desired output.
7. Include: system(“PAUSE”); after your output to pa…
