Question: LAB 1: CS 425 Write a Program to implement Selection Sort Algorithm The program must be tested with all types of data (int, float string
LAB 1: CS 425 Write a Program to implement Selection Sort Algorithm The program must be tested with all types of data (int, float string and char) This can be done easily by using typedef command as shown. typedef int Data; Then use the Data as data type for the data you are sorting. The advantage is, when you want to switch from one type to another only one statement you need to modify the typedef statement The two different functions are given in the class on Monday, They are given here again. // Min function returns the index for the smallest data int Min(int all, int p, int r) int min = p; for(int i = p+1; i
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
