java算法每日一练2021/1/23
摘要:
1.顺序查找 /** * 顺序查找 * 时间复杂度O(n) * @param args */public static void main(String[] args) { int[] nums = {1,1,5,13,6,9,8}; System.out.println("该数值所在下标为:"+s 阅读全文
posted @ 2021-01-23 09:56 孟庆淋 阅读(94) 评论(0) 推荐(0) 编辑