上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 24 下一页
摘要: 桶排序(BucketSort) 桶排序(Bucket sort)或所谓的箱排序,是一个排序算法,工作的原理是将数组分到有限数量的桶里。每个桶再个别排序(有可能再使用别的排序算法或是以递归方式继续使用桶排序进行排序),最后依次把各个桶中的记录列出来记得到有序序列。桶排序是鸽巢排序的一种归纳结果。当要被 阅读全文
posted @ 2024-02-06 20:35 赵千万 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 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) 阅读全文
posted @ 2024-02-05 20:00 赵千万 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2024-01-29 19:26 赵千万 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 今天下午和舍友夜爬抱犊寨 有的地方还是比较抖得 上面卖东西的人也不容易,那么冷,那么晚 阅读全文
posted @ 2023-11-05 20:59 赵千万 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 上午排球比赛,lose 一整天课 晚上写了写作业 阅读全文
posted @ 2023-11-02 20:11 赵千万 阅读(6) 评论(1) 推荐(0) 编辑
摘要: 工训 期中 工作 阅读全文
posted @ 2023-10-30 22:06 赵千万 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 下午参加了程序设计比赛,做的不咋地 好好学吧 晚上写了会作业 阅读全文
posted @ 2023-10-15 21:08 赵千万 阅读(1) 评论(0) 推荐(0) 编辑
摘要: class Grandparent { public Grandparent() { System.out.println("GrandParent Created."); } public Grandparent(String string) { System.out.println("Grand 阅读全文
posted @ 2023-10-13 21:33 赵千万 阅读(3) 评论(0) 推荐(0) 编辑
摘要: import java.util.LinkedList;import java.util.Queue;public class Main { public static void main(String[] args) { trees1<Integer> t = new trees1<>(1); t 阅读全文
posted @ 2023-10-11 20:18 赵千万 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2023-10-10 21:43 赵千万 阅读(4) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 24 下一页