Program 2 – CSCE350

$30.00

Category: You will Instantly receive a download link for .zip solution file upon Payment

Description

5/5 - (3 votes)

Goal: Implement the O(n logn) version of closest pair.
Instructions: Implement the closest pair algorithm (from the book). Basically, fill in closestPair().
Please note that it is templated.
Notes:
DO NOT CHANGE metrics.h (it will be changed)
You may add to targetgtest.cpp if you like (it will be overwritten).
You may add files, if you like. (You can do this without any new files but the maximum is 20). Just
keep them in the same directory as targetgtest.cpp.
As before to get this started:
• tar -xvzf Program_1_350.tar.gz
• cd Program_1_350
• mkdir build
• cd build
• cmake ..
• make
• ./runUnitTests
The one test that passes is running brute force closest pair multiple times.
Submission:
Upload just program2.h and new files, if any, (I will not include any files named “metrics.h” or
“targetgtest.cpp” from your submission and will, instead use my own.). Do not zip or tar.gz anything. I
want just the files.