摘要:
桶排序(BucketSort) 桶排序(Bucket sort)或所谓的箱排序,是一个排序算法,工作的原理是将数组分到有限数量的桶里。每个桶再个别排序(有可能再使用别的排序算法或是以递归方式继续使用桶排序进行排序),最后依次把各个桶中的记录列出来记得到有序序列。桶排序是鸽巢排序的一种归纳结果。当要被 阅读全文
摘要:
1.只适合正整数 import java.util.Arrays;public class Main { public static void main(String[] args) { int a[] = {2, 5, 3, 1, 3, 2, 7, 0, 8, 5}; countNumber(a) 阅读全文
摘要:
import java.util.Scanner;public class Main { public static int i = 0; public static void main(String[] args) { Scanner sc = new Scanner(System.in); St 阅读全文
摘要:
今天下午和舍友夜爬抱犊寨 有的地方还是比较抖得 上面卖东西的人也不容易,那么冷,那么晚 阅读全文
摘要:
上午排球比赛,lose 一整天课 晚上写了写作业 阅读全文
摘要:
下午参加了程序设计比赛,做的不咋地 好好学吧 晚上写了会作业 阅读全文
摘要:
class Grandparent { public Grandparent() { System.out.println("GrandParent Created."); } public Grandparent(String string) { System.out.println("Grand 阅读全文
摘要:
import java.util.LinkedList;import java.util.Queue;public class Main { public static void main(String[] args) { trees1<Integer> t = new trees1<>(1); t 阅读全文
摘要:
public class Main { public static void main(String[] args) { trees<Integer> t=new trees<>(1); trees<Integer> t1=new trees<>(2); trees<Integer> t2=new 阅读全文