用Java实现简单选择排序

package ch10; /** * 简单选择排序 * @author songjie * */ public class SelectSort { public static <T extends Comparable> boolean selectSort(T[] t){ if(t==null || t.length <= 1) return true; for(int
相关文章
相关标签/搜索