-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinsertionSortTest.cpp
More file actions
53 lines (39 loc) · 944 Bytes
/
Copy pathinsertionSortTest.cpp
File metadata and controls
53 lines (39 loc) · 944 Bytes
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
// C++ program for insertion sort
#include <bits/stdc++.h>
using namespace std;
/* Function to sort an array using insertion sort*/
void insertionSort(vector <int> &number)
{
int i, key, j;
for (i = 1; i < number.size(); i++)
{
key = number[i]; //the new card
j = i - 1; //the cards before new card
/* Move elements of arr[0..i-1], that are
greater than key, to one position ahead
of their current position */
while (j >= 0 && number[j] > key)
{
number[j + 1] = number[j];
j--;
}
number[j + 1] = key;
}
}
int main(void){
vector <int> number;
int n;
cin >> n;
for(int i=0; i<n; i++){
int value;
cin >> value;
number.push_back(value);
}
//call selectionsort function
insertionSort(number);
cout<<"Sorted array: \n";
for(auto &v: number){
cout << v << " ";
}
return 0;
}