subject

Complete the template function genericsort so that it sorts any type of array (you can use the sorting algorithm of your choice).

then, complete the class rectangle with the necessary operators so that genericsort can sort an array of rectangle objects.

hints:

rectangles objects are sorted by area.
the unit tests need the operator ! =
main. cpp

#include
#include
using namespace std;

//complete genericsort

int main()
{
/*these arrays are for testing purpose
int myarray[] = {10, 2, 6, 12, 4};
char array2[] = {'g', 'a', 'q', 'p', 'f'};
int n=5;
*/
}

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 02:00
What is the largest decimal number that can be represented by a binary number with 4 place values? (remember, each place in a binary number has a value of a power of 2, starting in the ones place with 20.)
Answers: 3
question
Computers and Technology, 22.06.2019 04:00
Acetylene is a gas which burns rapidly on its own, and is considered highly explosive. a) true b) false
Answers: 2
question
Computers and Technology, 22.06.2019 11:40
Pthreads programming: create and terminate a thread write a c++ program that creates a thread. the main will display a message “hello world from the main”. the main will create a thread that will display a message “hello world from the thread” and then terminates with a call to pthread_exit()
Answers: 3
question
Computers and Technology, 23.06.2019 10:00
Hey i just logged on and one of the moderators deleted a bunch of my answers to questions, even though the answers were right and the people it doesn't make sense but if anyone wants to talk about anything just message me lol (this is super random lol)
Answers: 1
You know the right answer?
Complete the template function genericsort so that it sorts any type of array (you can use the sorti...
Questions
Questions on the website: 13722360