----jGRASP exec: U:\Web\CS240_Fall_2007\Fall 07 CS 240 assignments\BinarySearchTree\AskForInput\BinarySearchTree_macdoncj_BSTtest\BSTtest How many integers will you be adding to the tree?: 6 Please enter the integers to add, one per line... -5 6 7 23 75 0 An inorder traversal of the tree... -5, 0, 6, 7, 23, 75, A preorder traversal of the tree... -5, 6, 0, 7, 23, 75, A postorder traversal of the tree... 0, 75, 23, 7, 6, -5, Which integer would you like to search for: 0 0 is in the tree. Which integer would you like to delete: -5 An inorder traversal of the tree... 0, 6, 7, 23, 75, A preorder traversal of the tree... 6, 0, 7, 23, 75, A postorder traversal of the tree... 0, 75, 23, 7, 6, How many integers will you be adding to the tree?: 6 Please enter the integers to add, one per line... 1 2 3 4 5 6 An inorder traversal of the tree... 1, 2, 3, 4, 5, 6, A preorder traversal of the tree... 1, 2, 3, 4, 5, 6, A postorder traversal of the tree... 6, 5, 4, 3, 2, 1, Which integer would you like to search for: 5 5 is in the tree. Which integer would you like to delete: 4 An inorder traversal of the tree... 1, 2, 3, 5, 6, A preorder traversal of the tree... 1, 2, 3, 5, 6, A postorder traversal of the tree... 6, 5, 3, 2, 1, This program has ended normally. ----jGRASP: operation complete.