摘要:
交换排序包含冒泡排序和快速排序。插入排序包含希尔排序,选择排序包括堆排序等。冒泡排序 O(n2)View Code void MySwap(int &a, int &b){ char temp; temp=a; a=b; b=temp;}void Bubble_Sort(int* a, int n){ int i,j; bool Ischanged; for (i=0;i<n;i++) { Ischanged= false; for (j=n-1;j>i;j--) { if (a[j... 阅读全文