|
Algorithms_in_C
1.0.0
Set of algorithms implemented in C.
|
Shell sort algorithm implementation. More...
#include <stdio.h>#include <stdlib.h>#include <time.h>Functions | |
| void | show_data (int *arr, long len) |
| Helper function to print array values. | |
| void | swap (int *a, int *b) |
| Swap two integer variables. More... | |
| void | shell_sort (int *array, long LEN) |
| Shell sort algorithm. More... | |
| int | main (int argc, char *argv[]) |
| Main function. | |
Shell sort algorithm implementation.