Question: 1- Consider the following declaration int list [ ] = {26, 86, 11, 43, 35, 75,12, 32}; Apply selection sort algorithm to the sort the
1- Consider the following declaration
int list [ ] = {26, 86, 11, 43, 35, 75,12, 32};
Apply selection sort algorithm to the sort the list given above in descending order. Describe the steps in the sorting algorithm.
2- please define a function selectionSort which sorts an integer list in descending order. The function prototype should be like
void selectionSort(int list[], int length);
The first parameter is the array input which should be sorted, and the second parameter is the length of the list.
3- Consider the following declaration
int list [] = {11, 23, 47, 55, 59, 64, 71, 77, 83, 96, 111, 123};
Apply binary search algorithm on the values stored in list for searching for a value = 60. Describe your steps in details as done for the examples discussed in before and illustrated in Figure-3 and Fugure-4.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
