-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path106-bitonic_sort.c
executable file
·96 lines (84 loc) · 2.48 KB
/
106-bitonic_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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
* File: 106-bitonic_sort.c
* Auth: Brennan D Baraban
*/
#include "sort.h"
void swap_ints(int *a, int *b);
void bitonic_merge(int *array, size_t size, size_t start, size_t seq,
char flow);
void bitonic_seq(int *array, size_t size, size_t start, size_t seq, char flow);
void bitonic_sort(int *array, size_t size);
/**
* swap_ints - Swap two integers in an array.
* @a: The first integer to swap.
* @b: The second integer to swap.
*/
void swap_ints(int *a, int *b)
{
int tmp;
tmp = *a;
*a = *b;
*b = tmp;
}
/**
* bitonic_merge - Sort a bitonic sequence inside an array of integers.
* @array: An array of integers.
* @size: The size of the array.
* @start: The starting index of the sequence in array to sort.
* @seq: The size of the sequence to sort.
* @flow: The direction to sort in.
*/
void bitonic_merge(int *array, size_t size, size_t start, size_t seq,
char flow)
{
size_t i, jump = seq / 2;
if (seq > 1)
{
for (i = start; i < start + jump; i++)
{
if ((flow == UP && array[i] > array[i + jump]) ||
(flow == DOWN && array[i] < array[i + jump]))
swap_ints(array + i, array + i + jump);
}
bitonic_merge(array, size, start, jump, flow);
bitonic_merge(array, size, start + jump, jump, flow);
}
}
/**
* bitonic_seq - Convert an array of integers into a bitonic sequence.
* @array: An array of integers.
* @size: The size of the array.
* @start: The starting index of a block of the building bitonic sequence.
* @seq: The size of a block of the building bitonic sequence.
* @flow: The direction to sort the bitonic sequence block in.
*/
void bitonic_seq(int *array, size_t size, size_t start, size_t seq, char flow)
{
size_t cut = seq / 2;
char *str = (flow == UP) ? "UP" : "DOWN";
if (seq > 1)
{
printf("Merging [%lu/%lu] (%s):\n", seq, size, str);
print_array(array + start, seq);
bitonic_seq(array, size, start, cut, UP);
bitonic_seq(array, size, start + cut, cut, DOWN);
bitonic_merge(array, size, start, seq, flow);
printf("Result [%lu/%lu] (%s):\n", seq, size, str);
print_array(array + start, seq);
}
}
/**
* bitonic_sort - Sort an array of integers in ascending
* order using the bitonic sort algorithm.
* @array: An array of integers.
* @size: The size of the array.
*
* Description: Prints the array after each swap. Only works for
* size = 2^k where k >= 0 (ie. size equal to powers of 2).
*/
void bitonic_sort(int *array, size_t size)
{
if (array == NULL || size < 2)
return;
bitonic_seq(array, size, 0, size, UP);
}