Last active
February 23, 2023 08:05
-
-
Save thinkphp/801c6416d7811a0734c75f9381eb1089 to your computer and use it in GitHub Desktop.
Heap, malloc, algorithm sorting, free, pointers to functions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <malloc.h> | |
#define fin "algsort.in" | |
typedef int (*ptr2)(const int a,const int b); | |
typedef void (*ptr1)(int*, int, ptr2); | |
int comp(int a, int b) { | |
return a > b; | |
} | |
void insertSort(int *p, int n, ptr2 cmp) { | |
int i, j, temp; | |
for(i = 1; i < n; i++) { | |
temp = p[i]; | |
j = i - 1; | |
while( j >= 0 && comp(p[ j ], temp) ) { | |
p[j+1] = p[j]; | |
j--; | |
} | |
p[j+1] = temp; | |
} | |
} | |
int* read(int*p, int *n) { | |
freopen(fin, "r", stdin); | |
scanf("%d", n); | |
p = (int*)malloc(sizeof(int) * (*n)); | |
int i = 0; | |
int size = *n; | |
while(size--) { | |
scanf("%d", p + i); | |
i++; | |
} | |
return p; | |
} | |
void display(int *p, int n) { | |
for(int i = 0; i < n; ++i) { | |
printf("%d ", *(p+i)); | |
} | |
} | |
int main(int argc, char const *argv[]) { | |
int *arr, n; | |
arr = read(arr, &n); | |
ptr1 sort = insertSort; | |
sort(arr, n, comp); | |
display(arr, n); | |
free( arr ); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment