Problem 2: Implement another C++ program to sort a list of integers using the se
ID: 3668330 • Letter: P
Question
Problem 2: Implement another C++ program to sort a list of integers using the selection sort algorithm. You are required to
use an integer vector to store the input numbers typed from the keyboard. The declaration of this vector will be in main(). You'll need to implement a separate function readData() to read numbers from the keyboard;
implement a separate function called selectionSort(), which will be called by the main() function to sort the afore-mentioned vector;
implement another function printVector() to print out the content of the vector. This function will be called by main() right after calling readData() and selectionSort(), respectively, to print out the vector content before and after being sorted.
Explanation / Answer
#include #include #include #include #include using namespace std; void getFreqLetter(string & CparagraphToCount, int size){ //Made a Char array to get every single letter in the paragraph to be a Char char Cparagraph[size]; for (int i = 0; iRelated Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.