1. set up a binary tree for the following list, in the given order, using alphabetical ordering: stop, let, there, tape, none, you, ant, nine, oat, nut. 2. explain step by step how you would search for the word test in your tree. 3. what is the height of the shortest binary search tree that can hold all 10 words? 4. write the preorder traversal of the tree. 5. write the postorder traversal of the tree. 6. write the inorder traversal of the tree.