-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path08.cpp
36 lines (34 loc) · 923 Bytes
/
08.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
//Program: 8. Implement the Insertion Sort algorithm
#include<bits/stdc++.h>
using namespace std;
int main()
{
int size, arr_sort[100], i, j, a, t;
cout << "Size of array = ";
cin >> size;
cout << "\n" << size << " Array elements for sorting = " << "\n";
for (i = 0; i < size; i++)
cin >> arr_sort[i];
cout << "\nElements = ";
for (i = 0; i < size; i++) {
cout << "\t" << arr_sort[i];
}
for (i = 1; i < size; i++) {
t = arr_sort[i];
j = i - 1;
while (j >= 0 && arr_sort[j] > t) {
arr_sort[j + 1] = arr_sort[j];
j = j - 1;
}
arr_sort[j + 1] = t;
cout << "\nSwap : " << i << " = ";
for (a = 0; a < size; a++) {
cout << "\t" << arr_sort[a];
}
}
cout << "\n\nSorted = ";
for (i = 0; i < size; i++) {
cout << "\t" << arr_sort[i];
}
return 0;
}