氣泡排序
using system;
namespace bubblesorter
}j++;}}
}public class mainclass
;bubblesorter sh=new bubblesorter();
sh.sort(iarrary);
for(int m=0;m<iarrary.length;m++)
console.write(" ",iarrary[m]);
console.writeline();}}
}選擇排序
using system;
namespace selectionsorter
int t=list[min];
list[min]=list[i];
list[i]=t;}}
}public class mainclass
;selectionsorter ss=new selectionsorter();
ss.sort(iarrary);
for(int m=0;m<iarrary.length;m++)
console.write(" ",iarrary[m]);
console.writeline();}}
}插入排序
using system;
namespace insertionsorter
list[j]=t;}}
}public class mainclass
;insertionsorter ii=new insertionsorter();
ii.sort(iarrary);
for(int m=0;m<iarrary.length;m++)
console.write("",iarrary[m]);
console.writeline();}}
}希爾排序
希爾排序是將組分段,進行插入排序.
using system;
namespace shellsorter
list[j-1]=t;}}
}}
public class mainclass
;shellsorter sh=new shellsorter();
sh.sort(iarrary);
for(int m=0;m<iarrary.length;m++)
console.write(" ",iarrary[m]);
console.writeline();}}
}
C 排序演算法大全
氣泡排序 學語言要花大力氣學資料結構和演算法。using system namespace bubblesorter j public class mainclass bubblesorter sh new bubblesorter sh.sort iarrary for int m 0 m iar...
C 排序演算法大全
c 排序演算法大全 本人用了c 開發出氣泡排序演算法。希望能為c 語言的學習者帶來一些益處。不要忘了,學語言要花大力氣學資料結構和演算法。using system namespace bubblesorter public class bubblesorter public void sort in...
C 排序演算法大全
c 排序演算法大全 土人2004 7 21 一 氣泡排序 bubble using system namespace bubblesorter j public class mainclass bubblesorter sh new bubblesorter sh.sort iarrary for ...