Program to Implement Insertion Sort in CPP (C plus plus)
Program to Implement Insertion Sort in CPP (C plus plus)
In this tutorial, we will learn about the Program to Implement Insertion 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 |
#include<iostream> using namespace std; int main() { int array[30]; int tmp; 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=1;i<=k-1;i++) { tmp=array[i]; j=i-1; while((tmp<array[j])&&(j>=0)) { array[j+1]=array[j]; j=j-1; } array[j+1]=tmp; } cout<<endl<<"Sorted list is shown below: "<<endl; for(i=0;i<k;i++) { cout<<array[i]<<" "; } return 0; } |
Output: