标签:
Selection sort
This method is called selection sort because it works by repeatedly selecting the smallest remaining item。
Selection sort uses ~N2/2 compares and N exchanges to sort an array of length N.
source code: Selection.java
结论:
insert sort
标签:
原文地址:http://www.cnblogs.com/luochuanghero/p/4282523.html