1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-12-16 15:44:39 +00:00
202401-programming-assignments/【实践课外】14.指针2/6-2 冒泡排序.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);
}