摘要: 1 #include 2 #include 3 #include 4 using namespace std; 5 const int len = 20;//待排序数组元素的个数,下标从1开始 6 //1、冒泡排序 7 void Bubble_sort(int s[],int len){ 8 bool flag; 9 for(int i=1;i... 阅读全文
posted @ 2018-06-21 23:54 霜雪千年 阅读(1165) 评论(0) 推荐(0) 编辑