-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path07_insertion_sort.cpp
80 lines (65 loc) · 1.71 KB
/
07_insertion_sort.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
Insertion Sort
Insert the "current" element in right position
The array is virtually split into a sorted and an unsorted part.
Values from the unsorted part are picked and placed at the correct position in the sorted part.
*/
#include<iostream>
using namespace std;
// function to print array
void print_array(int arr[], int range){
for (int index = 0; index < range; index++)
{
cout << arr[index] << " ";
}
cout << endl;
}
// insertion sort
void insertion_sort(int arr[], int range)
{
// iteration for sorted array
for(int itr=1; itr<=range-1; itr++)
{
int curr = arr[itr];
// placing "current" element on right position in sorted array
int index = itr-1;
while(arr[index]>curr and index>=0){
arr[index+1] = arr[index];
index--;
}
arr[index+1] = curr;
// print array
cout << "Step " << itr << " : ";
print_array(arr, range);
}
}
// funtion to drive code
int main()
{
int range;
int arr[1000];
cout << "How many elements you want to enter inside array: ";
cin >> range;
// Taking array values from user
cout << "Enter the array elements for sorting: ";
for (int index = 0; index < range; index++)
{
cin >> arr[index];
}
// Sorting array
insertion_sort(arr, range);
// print the sorted array
cout << "Sorted Array: ";
print_array(arr, range);
return 0;
}
/*
OUTPUT:
How many elements you want to enter inside array: 5
Enter the array elements for sorting: 5 2 3 4 1
Step 1 : 2 5 3 4 1
Step 2 : 2 3 5 4 1
Step 3 : 2 3 4 5 1
Step 4 : 1 2 3 4 5
Sorted Array: 1 2 3 4 5
*/