3.5. Quiz
Quiz 3: Sorting Algorithms
Last updated
Was this helpful?
Quiz 3: Sorting Algorithms
Last updated
Was this helpful?
Create the class under the package that inherits .
Override the populateSequence()
and getSequenceStartIndex()
methods such that it performs Shell Sort by using the Hibbard sequence: .
Feel free to use the code in .
Create the class under the package that inherits .
Override the sort()
method such that it performs Radix Sort from the most significant digit (MSD) to the least significant digit (LSD).
Feel free to use the code in .
Create the class under the test package.
Test the correctness of your TernaryHeapQuiz
using the method.
Add more tests for a more thorough assessment if necessary.
Compare runtime speeds between LSDRadixSort
and RadixSortQuiz
for random cases.
Create a PDF file quiz3.pdf and write a report that includes charts and explanations to compare runtime speeds between:
ShellSortKnuth
and ShellSortQuiz
.
LSDRadixSort
and RadixSortQuiz
.
Push everything under the sort package to your GitHub repository:
Submit quiz3.pdf to Canvas.
Compare runtime speeds between ShellSortKnuth
and ShellSortQuiz
for random, ascending, and descending cases using the method.
Main:
Test: