forked from TARANG0503/DSA-Practice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinsertionsort.cpp
45 lines (41 loc) · 940 Bytes
/
insertionsort.cpp
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
#include<iostream>
using namespace std;
void insertion_sort(int arr[], int size)
{
int i, j, k, el, pos;
for(i=1; i<size; i++)
{
el = arr[i];
if(el<arr[i-1])
{
for(j=0; j<=i; j++)
{
if(el<arr[j])
{
pos = j;
for(k=i; k>j; k--)
arr[k] = arr[k-1];
break;
}
}
}
else
continue;
arr[pos] = el;
}
}
int main()
{
int arr[50], size, i;
cout<<"Please enter number of elements in array: ";
cin>>size;
cout<<"Please enter "<<size<<" number of elements: ";
for(i=0; i<size; i++)
cin>>arr[i];
insertion_sort(arr,size);
cout<<"\nThe elements sorted in ascending order are:\n";
for(i=0; i<size; i++)
cout<<arr[i]<<" ";
cout<<endl;
return 0;
}