Question: 1 9 . 1 2 LAB: Insertion sort The program has four steps: Read the size of an integer array, followed by the elements of
LAB: Insertion sort
The program has four steps:
Read the size of an integer array, followed by the elements of the array no duplicates
Output the array.
Perform an insertion sort on the array.
Output the number of comparisons and swaps performed.
main performs steps and
Implement step based on the insertion sort algorithm in the book. Modify insertionSort to:
Count the number of comparisons performed.
Count the number of swaps performed.
Output the array during each iteration of the outside loop.
Complete main to perform step according to the format shown in the example below.
Hints: In order to count comparisons and swaps, modify the while loop in insertionSort Use static variables for comparisons and swaps.
The program provides three helper methods:
Read and return an array of integers. The first integer read is number of integers that follow. int readNums Print the numbers in the array, separated by spaces No space or newline before the first number or after the last. void printNumsint nums Exchange numsj and numsk void swapint nums, int j int k
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
