我的github
摘要: 1.使用遍历的方式查找某个元素: public static int findElement(int[] array, int target) { for (int i = 0; i < array.length; i++) { if (array[i] == target) { return i; 阅读全文
posted @ 2024-01-04 15:54 XiaoNiuFeiTian 阅读(682) 评论(0) 推荐(0) 编辑
摘要: https://www.dameng.com/list_103.html 阅读全文
posted @ 2024-01-04 09:38 XiaoNiuFeiTian 阅读(6) 评论(0) 推荐(0) 编辑
摘要: select distinct * from 参考:https://blog.csdn.net/qq_35091353/article/details/127805844 参考2:https://blog.csdn.net/qq_36761831/article/details/82857545 查 阅读全文
posted @ 2024-01-04 09:37 XiaoNiuFeiTian 阅读(3) 评论(0) 推荐(0) 编辑