-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathInsertion-Sort.cpp
79 lines (60 loc) · 1.66 KB
/
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
// Libraries to be added
#include <iostream>
#include <cstdlib>
#include <iomanip>
#include <chrono>
#include <time.h>
#include <fstream>
using namespace std;
// Function Prototypes
void InsertionSort(int array[], int start, int end);
void RandomArray(int array[], int size);
int main()
{
int size;
cout << "Enter the Size of Array: ";
cin >> size;
int *A = new int[size];
// To generate random Numbers and store them
srand(time(NULL));
RandomArray(A, size);
// Code to call InsertionSort and measure time duration
auto start = chrono::high_resolution_clock::now();
InsertionSort(A, 0, size - 1);
auto end = chrono::high_resolution_clock::now();
double time_taken = chrono::duration_cast<chrono::nanoseconds>(end - start).count();
// Code to calculate the time duration
time_taken *= 1e-9;
cout << "\n Time taken by the insertion Sort, with " << size << " size of Array is: ";
cout << fixed << time_taken << setprecision(9) << " seconds" << endl;
// Code to Save sorted array in csv file
ofstream OutData;
OutData.open("SortedInsertionSort.csv");
for (int i = 0; i < size; i++)
OutData << A[i] << endl;
delete[] A;
}
// $$$ Functions Definitions $$$
// InsertionSort Iterative Function
void InsertionSort(int arr[], int startIndex, int endIndex)
{
int i, key, j;
for (i = startIndex + 1; i <= endIndex; i++)
{
key = arr[i];
j = i - 1;
// To place the element in the sorted array
while (j >= startIndex && arr[j] > key)
{
arr[j + 1] = arr[j];
--j;
}
arr[j + 1] = key;
}
}
// RandomArray Function to fill the array with random numbers
void RandomArray(int array[], int size)
{
for (int i = 0; i < size; i++)
array[i] = rand();
}