-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinsertion_sort.c
66 lines (52 loc) · 1.38 KB
/
insertion_sort.c
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
/*
* Input : A sequence of n numbers <a1, a2, ..., an>
* Output : Sorted list <a1', a2', ..., an'>
* of the input sequence in ascending order
* Method : For any element, we assume all the elements
* to its left are already sorted. Shifting all
* the elements greater to it, in the left to one
* position right and then insert the key selected
* in the right position.
*/
#include<stdio.h>
#include<stdlib.h>
main()
{
int *array = NULL; // Pointer to int, initialize to nothing.
int n, i;
printf("Enter number of elements: ");
scanf("%d", &n);
// Dynamically allocate memory for n elements
array = (int *)calloc(n, sizeof(int));
// Reading the elements
printf("\nEnter the elements:");
for (i = 0;i < n;i++)
scanf("%d", &array[i]);
// Invoke insertion_sort
insertion_sort(array, n);
// Display sorted array
printf("sorted array:");
for (i = 0;i < n;i++)
printf("%d ", array[i]);
printf("\n");
}
/*
* Sorts the elements of the array in ascending order
*/
insertion_sort(int *arr, int num)
{
int i, j, key;
for (i = 1;i < num;i++) {
// Select the element to be inserted to its
// correct position
key = arr[i];
for (j = i - 1;j >= 0;j--) {
if (arr[j] > key)
arr[j+1] = arr[j];
else
break;
}
// Inserting to the right position
arr[j+1] = key;
}
}