[Solved] CS590-homework 1 C++ & running times

$25

File Name: CS590-homework_1__C++_&_running_times.zip
File Size: 348.54 KB

SKU: [Solved] CS590-homework 1 – C++ & running times Category: Tag:
5/5 - (1 vote)

CS590 homework 1 C++ & running times

You are given an integer vector which is represented by int* an array of integers and its dimension n as a separate parameter. We are interested in sorting arrays of integer vectors according to a pre-defined notion of vector length. You therefore are given the function ivector_length(v, n) that computes and returns the length of vector v with dimension n as

You are given a naive (and very inefficient) implementation of insertion sort for arrays of integer vectors.

Questions (100 points)

  1. Develop an improved implementation of insertion sort for integer vector (insertion_sort_im) that precomputes the length of each vector before the sorting. Keep in mind that the vectors are sorted according to their length (see ivector_length function). You can test the correctness of your sorting algorithm using the provided check_sorted
  1. Implement a merge sort for an array of integer vectors. As for the improved insertion sort algorithm, you should precompute the length of the vectors before the sorting and the sorting is done according to the vector length. Test the correctness of your merge sort implementation using the provided check_sorted
  1. Measure the runtime performance of insertion sort (naive and improved) and merge sort for random, sorted, and inverse sorted inputs of size m = 10000; 25000; 50000; 100000; 250000; 500000; 1000000; 2500000 and vector dimension n = 10; 25; 50. You can use the provided functions create_random_ivector, create_sorted_ivector, create reverse_sorted_ivector.

Repeat each test a number of times (usually at least 10 times) and compute the average running time for each combination of algorithm, input, size m, and vector dimension n. Report and comment on your results.

Remarks:

  • You are not allowed to use code from online resources. Your submission will be tested against that, and will receive a 0, and a report to the Graduate Academic Integrity Board if it is detected.
  • Your report has to be typed, and submitted in a pdf file. You should provide figures that plot the running times in relation to the input size parameters.
  • You might have to adjust the value for n depending on your computers speed, but allow each test to take up to a couple of minutes.
  • Start with smaller values of n and m and stop if one instance of the algorithm takes more than 5 min to complete (the insertion sort implementations will hit that limit early on).
  • Report and comment means that you have to analyze and interpret your findings properly. What do the experiments tell you?
  • The programming, testing and the experimentation will take some time. Start early.
  • Feel free to use the provided source code for your implementation. You have to document your code.
  • A Makefile is provided to build the code in the Virtual Box provided.
  • Your code has to compile, and run at the Virtual box shared with you in order to be graded.
  • Your methods should be added in the sort.h/sort.cpp files. You must keep the same file structure, makefile that is provided in the skeleton code.

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[Solved] CS590-homework 1 C++ & running times
$25