I need some real help in my Object Oriented Programming class. I have a project that is due by Wednesday and I need some guidance in how to complete this project. I have attached a .zip file of the source code that I created in Eclipse. Thanks to anyone who can provide a quick response and any help / guidance.
I have not been able to find a tutor around my area for Java and want to become proficient.
---------------------------------------------------
Instructions:
Design an OO framework that will allow you to study multiple sorts. All of the objects in the sorting framework will need to sort the same array of data and time the results. After you have run your program on data with different characteristics, you will need to write a report detailing your results.
To see how well the sorts work, you must sort arrays of varying sizes. These sizes are: 10 elements, 50 elements, 100 elements, 500elements, and 1000 elements. For each of these array sizes, you will have to use one array that is already sorted, another array that is partially sorted, and one that is random. Create a table containing the runtime of each of the sorts when sorting these combinations. The following table provides an example of the test runs you will need to make for each sort:
Elements# Fully Sorted Partially Sorted Random 10 50 100 500 1000