about summary refs log tree commit diff
path: root/usth/ICT2.1/labwork/5/Ex1.c
blob: e64c6eaa1ed4d2fdca72b0ba4bcfa88dfb7e84ba (plain) (blame)
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
/*
 * Cocktail shaker sorting integers from stdin
 * Copyright (C) 2019,  Nguyễn Gia Phong
 * This software is licenced under a CC BY-SA 4.0 license
 */

#include <stdio.h>

void strswap(char *this, char *that, size_t n)
{
	while (n--) {
		this[n] ^= that[n];
		that[n] ^= this[n];
		this[n] ^= that[n];
	}
}

void csort(void *base, size_t nmemb, size_t size,
           int (*compar)(const void *, const void *))
{
	char *i, *low = base;
	char *high = low + nmemb * size;
	do {
		char *h = i = low;
		while ((i += size) < high)
			if (compar(i - size, i) > 0)
				strswap(i - size, h = i, size);
		high = h;
		if (low + size >= high)
			break;
		char *l = i = high;
		while ((i -= size) > low)
			if (compar(i - size, i) > 0)
				strswap(i - size, l = i, size);
		low = l;
	} while (low + size < high);
}

int cmp(const void *x, const void *y)
{
	return *(int *) x - *(int *) y;
}

int main()
{
	size_t n;
	scanf("%zu", &n);
	int a[n];
	for (int i = 0; i < n; i++)
		scanf("%d", a + i);

	csort(a, n, sizeof(int), cmp);
	for (int i = 0; i < n; i++)
		printf("%d ", a[i]);
	putchar(10);

	return 0;
}