Question: In C++ Write the selection sort function recursively (Note: it can be done within one function using a bunch of flags, but I find its

In C++ Write the selection sort function recursively (Note: it can be done within one function using a bunch of flags, but I find its easier to think of recursion this way: every time youd write a separate loop, make a separate recursive function for that. So in the selection sort algorithm, the first function would be the inner loop, and the second function would be the outer loop. Make sure it works on lists that are already in order, lists that are in reverse order, and completely random lists. NO for/while loops, only recursively please!

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!