Starting from:

$24.99

COMP3270 Assignment 5 Solution

Objectives of this assignment:.

What you need to do (Insert in this file your answers):
1. (20 points) Implement the NaïveSort and MergeSort algorithms to sort an array.
submit your source code in your preferred language (as long as it is supported on Tux machines).
Provide here the instructions to compile and execute your code
2. ( 5 points) Collect the execution time T(n) as a function of n for the two algorithms
No need to submit a table of the values you collect. Just state here if you collected data and submit a cvs file containing the values n, TNaive(n), and TMerge(n) where TNaive(n), and TMerge(n) are respectively the execution time of NaïveSort and MergeSort for an array of size n.
3. (20 points) Plot on the same graph the running time TNaive(n), and TMerge(n) of each algorithm. Insert here the plot...

4. (20 points) Using a pertinent graph/plot with your data (hint: look at previous programming assignments how we can determine the shape of T(n) and its asymptotic growth), show/illustrate what the time complexity of NaïveSort is.
Insert here the plot...
Discuss here the pertinent plot that determines the asymptotic growth of Naive Sort

5. (20 points) Using a pertinent graph/plot with your data (hint: look at previous programming assignments), show/illustrate what the time complexity of MergeSort is.
Insert here the plot...
Discuss here the plot plot that determines the asymptotic growth of MergeSort

6. (15 points) Discuss the results comparing the two algorithms. Discuss here the plot. Which algorithm is better?

Objective:
The objective of this programming assignment is to implement in Java the NaïveSort and MergeSort algorithms presented in the lectures to sort a list of numbers. We are interested in comparing the two algorithms. For this exploration, you will collect the execution time T(n) as a function of n and plot on the same graph the execution times T(n) of the two algorithms. Finally, discuss your results.

Program to implement
collectData()
Generate an array G of HUGE length L (as huge as your language allows) with random values capped at 0x7ffffffe.
for n = 4000 to L (with step 1,000)


for each algorithm NaïveSort and MergeSort do copy in Array A n first values from Array G
Start timing // We time the sorting of Array A of length n Sort A using one of the two algorithms.
Store the value n and the value T(n) in a file F where T(n) is the execution time
//Think here about value(s) to collect for the pertinent graph/plot for questions 4, 5, and 6

What should be L? L must be as large as possible such that 1) you collect enough data to produce meaningful plots, 2) it would not take too much time to collect data, and 3) your machine can handle.

Data Analysis
Use any plotting software (e.g., Excel) to plot the values T(n) in File F as a function of n. File F is the file produced by the program you implemented. Discuss your results based on the plots.
Report
• Your report is this file in which you inserted your answers
• Good writing is expected. • Recall that answers must be well written, documented, justified, and presented to get full credit.
What you need to turn in:
• Electronic copy of your source program (standalone) that collects data
• csv file containing n, TNaive(n), and TMerge(n)
• Electronic copy of the report (this file including your answers) (standalone). Submit the file as a Microsoft Word or PDF file.

Grading
1. (20 points) Implement the NaïveSort and MergeSort algorithms to sort an array A.
2. ( 5 points) Collect the execution time T(n) as a function of n for the two algorithms
3. (20 points) Plot on the same graph the running time of the two algorithms.
4. (20 points) Using a pertinent graph/plot with your data (hint: look at previous programming assignments), show/illustrate what the time complexity of NaïveSort is.
5. (20 points) Using a pertinent graph/plot with your data (hint: look at previous programming assignments), show/illustrate what the time complexity of MergeSort is.
6. (15 points) Discuss the results comparing the two algorithms.


More products