摘要: 个人理解,如有错误请多指点 有一个数组{8,9,7,6,4,5,3,2,1,0},对他从小到大进行排序出来.{0,1,2,3,4,5,6,7,8,9} 源代码: #include<stdio.h>void bubble_sort(int *arr){ int i = 0; for (i = 0; i 阅读全文
posted @ 2020-12-10 16:00 sirdeng 阅读(115) 评论(0) 推荐(0)