插入排序,选择排序和快速排序复习(C语言实现)
简单的排序算法复习
1,简单插入排序
void InsertSort(int a[],int n){
int i,j,temp;
for(i=1;i<n;i++){
temp = a[i];
for(j=i-1;j>=0&&a[j]>temp;j--){
a[j+1] = a[j];
}
a[j+1] = temp;
}
}
2,选择排序
void SelectSort(int a[],int n){
int i,j,min;
for(i=
原创
2020-10-15 09:37:34 ·
425 阅读 ·
0 评论