摘要:
publicclass shellSort { publicshellSort(){ int a[]={1,54,6,3,78,34,12,45,56,100}; double d1=a.length; ... 阅读全文
摘要:
void InserSort(int a[],int n)//直接插入排序 { int i,j,t; for(i=1;i=0 && t=0;--j){ if(t<a[j]) {a[j+1]=a[j];} //向后移动数据 else { bre... 阅读全文