05 2021 档案

摘要:选择排序 `public class SelectSort { public static void main(String[] args) { int[] eles = {0, -1, -3, 2, 100, Integer.MAX_VALUE, Integer.MIN_VALUE}; selec 阅读全文
posted @ 2021-05-17 16:22 小路不懂2 阅读(25) 评论(0) 推荐(0) 编辑
摘要:1. 二分查找是一种算法,其输入是一个有序的元素列表(必须有序的)。如果要 查找的元素包含在列表中,二分查找返回其位置;否则返回null。 一般而言,对于包含n个元素的列表,用二分查 找最多需要log2n步,而简单查找最多需要n步。 private static int binarySearch(i 阅读全文
posted @ 2021-05-14 17:03 小路不懂2 阅读(75) 评论(0) 推荐(0) 编辑