mirror of
https://github.com/renbaoshuo/202401-programming-assignments.git
synced 2024-12-16 15:44:39 +00:00
8 lines
144 B
C
8 lines
144 B
C
int cmp(const void *a, const void *b) {
|
|
return *(int *)a - *(int *)b;
|
|
}
|
|
|
|
void bubble(int a[], int n) {
|
|
qsort(a, n, sizeof(int), cmp);
|
|
}
|