Programming:
1. For each method, give the pre and post conditions and invariant, if any - 10%
2. Program execution according to the requirements given 50%
3. Naming of program as required 5%
Description of Program
You are to write a program name BSTree.java that will:
1. Generate 100 random integer numbers ranging from 1 - 99.
2. Store these numbers in a data structure of your choice and display the data on the screen. DO NOT SORT THIS DATA STRUCTURE.
3. Now build a Binary Search Tree using this set of numbers. You MUST insert the values into the tree starting from the first element of your Data Structure and go sequentially.
4. After building the tree, use an infix recursive method to display the data on the screen.
5. To build the Binary Search Tree, you must create your own Linked List.