write a C++ program to implement the binary search tree algorithm, and the in-order, pre-order, and post-order traversal algorithms. show your output for these three traversal algorithms on the date set 2,45,0,97,22,41,17,95,64,28.
I am also trying to make Binary tree which can sort the data in ascending order. I have used recursion with which I am not fully comfortable as it is very difficult to dry run the program. I am trying to find new ways to avoid recursion. If anyone can provide me the same please help.
Here is my code. It is incomplete, but may help you.