摘要: 二:几种常用的排序方法整理1),冒泡排序和快速排序 1 void BubbleSort(int *a,int size)//冒泡排序,时间复杂度O(n^2),空间复杂度为1,稳定 2 { 3 for(int i=0;ii;j--) 5 { 6 if(a[j] array[j + 1]) // Ascending,升序,小数上浮,大数下沉 { flag = true; temp = array[j]; ... 阅读全文
posted @ 2013-09-27 22:44 wj704 阅读(211) 评论(0) 推荐(0) 编辑