Program to Implement Selection Sort in CPP (C plus plus)
In this tutorial, we will learn about the Program to Implement Selection Sort in CPP (C plus plus).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
#include<iostream> using namespace std; int main() { int array[30]; int l; int tmp; int h; int i; int j; int k; cout<<"Please enter the number of values:" ; cin>>k; cout<<endl<<"Please enter the desired values: "<<endl; for(i=0;i<k;i++) { cin>>array[i]; } for(i=0;i<k-1;i++) { h=array[i]; l=i; for(j=i+1;j<k;j++) { if(h>array[j]) { h=array[j]; l=j; } } tmp=array[i]; array[i]=array[l]; array[l]=tmp; } cout<<endl<<"Sorted list is shown below: " <<endl; for(i=0;i<k;i++) { cout<<array[i]<<" "; } return 0; } |
Output:
