-
Notifications
You must be signed in to change notification settings - Fork 0
/
sort.h
56 lines (47 loc) · 1.26 KB
/
sort.h
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
#ifndef SORT_H
#define SORT_H
#include <stdio.h>
#include <stdlib.h>
/* Comparison direction macros for bitonic sort */
#define UP 0
#define DOWN 1
/**
* enum bool - Enumeration of Boolean values.
* @False: Equals 0.
* @True: Equals 1.
*/
typedef enum Boolean
{
False = 0,
True
} Boolean;
/**
* struct listint_s - Doubly linked list node
*
* @n: Integer stored in the node
* @prev: Pointer to the previous element of the list
* @next: Pointer to the next element of the list
*/
typedef struct listint_s
{
const int n;
struct listint_s *prev;
struct listint_s *next;
} listint_t;
/* Printing functions */
void print_array(const int *array, size_t size);
void print_list(const listint_t *list);
/* Types of Sorting Algoritms */
void bubble_sort(int *array, size_t size);
void insertion_sort_list(listint_t **list);
void selection_sort(int *array, size_t size);
void quick_sort(int *array, size_t size);
void shell_sort(int *array, size_t size);
void cocktail_sort_list(listint_t **list);
void counting_sort(int *array, size_t size);
void merge_sort(int *array, size_t size);
void heap_sort(int *array, size_t size);
void radix_sort(int *array, size_t size);
void bitonic_sort(int *array, size_t size);
void quick_sort_hoare(int *array, size_t size);
#endif /* SORT_H */