java不用任何已有方法完全自写的去重法
摘要:
package aa; class InsertSort{ private long[] a; private int nElems; //构造方法 public InsertSort(int max){ a = new long[max]; nElems = 0; } //插入方法 public void insert(long value){ a[nElems] =... 阅读全文
posted @ 2017-09-16 22:16 iwebkit 阅读(536) 评论(0) 推荐(0) 编辑