Question: in c++ programming language, do the following: If your nameArray, variable is sorted using Selection Sort Algorithm, it will go through several pass throughs and
in c++ programming language, do the following:

If your nameArray, variable is sorted using Selection Sort Algorithm, it will go through several pass throughs and characters will be swapped in each pass through, until nameAwax gets completely sorted (alphabetically, in descending order). Show all these stages (Passes and swaps within Passes) for your pameArray, Here is an example, with the name JONPDOE of how to write these steps: First : JONP DOE Pass 1: PI ON JDO E Swaps: 1-P and J Pass 2: PONJDO E Swaps: None Pass 3: P OOJDN E Swaps: 1-O and N Pass 4 : P O O N! D J E Swaps: 1-N and J Pass 5 : P O O N Jl D E Swaps: 1-J and D Pass 6: P OONJE D Swaps: 1-E and D End: POQNJED//All elements sorted (descending) ** assume I have already defined the array& entered the letters as: char nameArray {'J',' ',N','P','D','O,'E')
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
