HW12: Sorting due Fri 08 Dec 10:00

\begin{purpose}
This assignment provides opportunities to:
\begin{itemize}
\ite...
...h a regular binary search
tree for a given data set.
\end{itemize}\end{purpose}

Context

In all you do please remember that being a part of CSCI@HSU means DOING THE RIGHT THING.

So, do this assignment in a way that demonstrates integrity, develops competence, is correct, and honors God ... because what we do matters!

Allowed and Disallowed Resources

In completing this assignment you MAY use/access the following resources:

You may NOT use/access:

Failure to abide by these guidelines will result in a zero for the assignment and the incident will be reported to the university provost as a violation of the university academic integrity policy. A second incident of academic dishonesty (whether from this course or another computer science course) will result in an F in the course.

Overview

The instructions for the assignment are given here: https://youtu.be/QWsuyqNlZ2c

After watching the video, create a hand-written UML diagram. Take a picture of it for your records and give the physical document to the instructor on the day the assignment is given (NOT the due date).

Sample Output

Here is a small snippet of the output produced by my program for this assignment:
Top 10 contributors:
Cordero, Kanae          $244222
Ooka, Laine             $192402
Winic, Romy             $189698
Mihara, Kimiko          $103325
Meza, Amador             $74727
Hilburn, Roxanne         $65972
Orey, Jeff               $63281
Heu, Melanie             $63254
Yahiku, Edgar            $60571
Jinbo, Rebecca           $60092
-------------------------------------------
Sort Method: Selection Sort
File name  : ../data/tiny.txt
# entries  : 20
Read time  : 0.001
Sort time  : 0.000
Total time : 0.001
-------------------------------------------

Grading

Prior to the due date you will push your completed work to your repository where it will be graded. Your program will be graded according the following criteria:

OOP Design 5 pts
Correctness/Completeness 20 pts
Documentation/Conventions 3 pts
Unit Tests 6 pts
Version Control 2 pts
Total 36 pts

Here are details regarding expectations for each category listed above:

OOP Design
Full credit is earned if the design is presented in the correct format, on-time, follows OOP design principles, and does not require substantial modification to be implemented. The design should be hand-drawn, should use customary UML notation (including types and showing inheritance) and must be physically turned in (email submissions will not be accepted). The design is due by noon on Friday, Dec 1 at 10am.
Correctness/Completeness
Full credit is earned if the program meets all requirements and if it works correctly without any needed tweaks or modifications.
Documentation/Conventions
Full credit is earned if all classes and methods are documented using JavaDoc format and if Java programming conventions are followed. The specific guidelines can be found here: https://hsutx.instructure.com/files/folder/courses_13381?preview=3026424
Unit Tests
Full credit is given if every major section of code is covered by unit tests that provide excellent coverage of the functionality of the the program. This may require some refactoring of your code to allow for programmatic measurement of its components.
Version Control
Full credit is given if there are a reasonable number of commits throughout the assignment (one commit is not enough) and if those commits have been pushed to your bitbucket account prior to the due date.