create-a-c-program-searching-and-sorting

There are actually 3 source files/starting templates for this assignment: assg-05.cpp, QuickSort.hpp and QuickSort.cpp. You need to download and use all 3. assg-05.cpp contains the main function and has tests of your code. You should not need to add anything to this file, simply uncomment the tests as you are working on your assignment. You should add your name and information to the file header at the top of all 3 files. The files QuickSort.hpp and QuickSort.cpp are the header file and implementation file respectively. You will need to add the function prototypes to the .hpp header file class definitions for the functions you are to write for this assignment. And likewise, you will need to write and implement your functions for this assignment in the .cpp file.