1. Devise some code to insert data in inversely sorted order (99999, 99998, 99997...) into bubbleSort.java. Try to insert 10,000 items and show the running time of the bubble sort. Repeat this experiment with selectSort.java and insertSort.java.
2. Write code to insert data in already-sorted order (0, 1, 2 ...) into bubbleSort.java. Try to insert 10,000 items and show the running time of the bubble sort. Repeat this experiment with selectSort.java and insertSort.java.