aboutsummaryrefslogtreecommitdiff
path: root/insertsort.c
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2022-01-01 13:42:26 +0100
committerThomas Schmucker <ts@its1.de>2022-01-01 13:42:26 +0100
commite5442c9cb145f2aba28b1ec84389922c6de6bced (patch)
treeaf183a6b8f7645b7b2ad7f7d58b51f903b3a55d2 /insertsort.c
parent214f0923ba2981649f14ec3761662332df446d9d (diff)
parent20ad66e839dbc632b844f1c03137efa1a457f5fd (diff)
downloaddata-structures-e5442c9cb145f2aba28b1ec84389922c6de6bced.tar.gz
data-structures-e5442c9cb145f2aba28b1ec84389922c6de6bced.tar.bz2
data-structures-e5442c9cb145f2aba28b1ec84389922c6de6bced.zip
Merge branch 'feat/implement-new-sorting-algorithms'
Diffstat (limited to 'insertsort.c')
-rw-r--r--insertsort.c38
1 files changed, 38 insertions, 0 deletions
diff --git a/insertsort.c b/insertsort.c
new file mode 100644
index 0000000..1a30a1a
--- /dev/null
+++ b/insertsort.c
@@ -0,0 +1,38 @@
1#include <stdio.h>
2#include <stdlib.h>
3#include <time.h>
4
5#include "util.h"
6
7typedef int T;
8
9void
10insertsort(T a[], size_t n)
11{
12 for ( size_t i = 1; i < n; ++i ) {
13 size_t j = i;
14 const T value = a[i];
15
16 for ( ; j > 0 && a[j - 1] > value; --j )
17 a[j] = a[j - 1];
18
19 a[j] = value;
20 }
21}
22
23int
24main(void)
25{
26 T a[10];
27
28 srand(time(NULL));
29 for ( size_t i = 0; i != NELEM(a); ++i )
30 a[i] = rand() % 100;
31
32 insertsort(a, NELEM(a));
33
34 for ( size_t i = 0; i != NELEM(a); ++i )
35 printf("%d ", a[i]);
36 putchar('\n');
37 return EXIT_SUCCESS;
38}