Write a c++ program that sorts one – dimensional array’s value into ascending order using the selection sort method
#include <iostream>
using namespace std;
void selectionSort(int arr[], int n){
int i, j, k, temp;
for (i = 0; i < n-1; i++){
k = i;
for (j = i+1; j < n; j++){
if (arr[j] < arr[k]){
k = j;
}
}
temp = arr[i];
arr[i] = arr[k];
arr[k] = temp;
}
}
int main()
{
int arr[3];
int n;
cout<<"Enter number of elements in the array: ";
cin>>n;
cout<<"Enter "<<n<<" numbers for the array: ";
for(int i = 0;i<n;i++){
cin>>arr[i];
}
selectionSort(arr,n);
for(int i = 0;i<n;i++){
cout<<arr[i]<<" ";
}
return 0;
}

Write a c++ program that sorts one – dimensional array’s value into ascending order using the...
Write a JAVA program to sort a given array of integers (1 Dimensional) in ascending order (from smallest to largest). You can either get the array as input or hardcode it inside your program.
in c++
Program 1 Write a program that sorts a vector of names alphabetically using the selection sort and then searches the vector for a specific name using binary search. To do that, you need to write three functions I. void selSort (vector string &v: sorts the vector using selection sort 2. void display (const vector <string & v): displays the vector contents . int binSearch (const vector <ing& v, string key): searches the vector for a key returns the...
Must be written in C++ Display results and comments Write a program that sorts a vector of names alphabetically using the selection sort and then searches the vector for a specific name using binary search. To do that, you need to write three functions: 1. void selSort (vector <string> & v): sorts the vector using selection sort 2. void display (const vector <string> & v): displays the vector contents 3. int binSearch (const vector <string> & v, string key): searches...
*MATLAB CODE* 3)Write a function 'mydsort' that sorts a vector in descending order (using a loop, not the built-in sort function). 4)write a function that will receive a vector and will return two index vectors: one for ascending order and one for descending order. Check the function by writing a script that will call the function and then use the index vectors to print the original vector in ascending and descending order. **Please make sure they work. I have found...
C programing Write a program to sort numbers in either descending or ascending order. The program should ask the user to enter positive integer numbers one at a time(hiting the enter key after each one) The last number entered by the user should be -1, to indicate no further numbers will be entered. Store the numbers in an array, and then ask the user how to sort the numbers (either descending or ascending). Call a function void sortnumbers ( int...
C++ SORTING – BUBBLE SORT METHOD Use the below Text File and write code that sorts it based on the users sort method selection. Please provide a separate .cpp file wit hthe code containing the sort method. The sorting method uses the text file below and sorts it accordingly. Seperate the sorting method into an additional C++ file. ********************************* Text File Below is a text file called classes.txt. This text file lists, by course number and section number a series...
Write a C program that will sort the list of the numbers into ascending output using pointers. (10,20,30,0,3,4,5,6,7,8,9,100,200,300,55,65,35,24,19,20)
Using c++ Write a program that reads in a list of up to 25 first names from an input file nameData.txt and allows the user to display the name data, sort it in ascending or descending order, count the number of occurrences of a given name, or exit the program. The input file consists of a single names per line with each line terminated with an end of line (i.e. using Enter key to end the line). Your program should...
Develop a program that accepts integers from command line, sorts the integers into ascending order, computes the sum of the integers, and counts the number of even numbers and the number of odd numbers. Solve in C programing language?
Write a program that creates a List of Rationals and sorts them into increasing order. Use appropriate methods from the Collections Framework classes and sort and order the elements from smaller to bigger.