bubble_sort

写一个bubble_sort实现库函数qsort冒泡排序

int cmp_int(const void* e1, const void* e2) { return *(int*)e1 - *(int*)e2;//e1 e2 调用前需要类型转换 } void swap(char* buf1, char* buf2, int width) { int i = ......
bubble_sort 函数 bubble qsort sort
共1篇  :1/1页 首页上一页1下一页尾页