摘要: 解决链接https://www.cnblogs.com/wangpaipilot/articles/14372787.html 阅读全文
posted @ 2022-08-14 23:03 努力学习の小白 阅读(380) 评论(0) 推荐(0) 编辑
摘要: 参看链接:https://www.cnblogs.com/konglxblog/p/16384170.html#SpringCloudSpringBoot_36 阅读全文
posted @ 2022-08-13 19:04 努力学习の小白 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 最近遇到一个困扰了我很久的问题(关于Zuul): 报错界面如下: 原因是因为:Zuul与SpringBoot版本冲突,而SpringCloud又和SpringBoot版本关联, SpringCloud与SpringBoot版本可以参考如下: <dependency> <!-- 导入springClo 阅读全文
posted @ 2022-08-13 19:00 努力学习の小白 阅读(1285) 评论(0) 推荐(0) 编辑
摘要: 上代码: package com.alg.exclusive; public class classify { public static void main(String[] args) { // 找出数组中其中只出现奇数次的数 int[] arr = {1, 1, 2, 2, 3, 4, 4, 阅读全文
posted @ 2022-07-23 20:51 努力学习の小白 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 上代码: package com.liu.pro; public class binaryWhileSearch { public static void main(String[] args) { // 测试数组 int[] arr = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9} 阅读全文
posted @ 2022-07-21 20:02 努力学习の小白 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 上代码: package com.liu.pro; import java.util.Arrays; public class heapSort { public static void main(String[] args) { int[] arr = {9, 8, 5, 6, 2, 7, 1, 阅读全文
posted @ 2022-07-18 22:45 努力学习の小白 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 代码实现如下: package com.liu.pro; public class binarySearch { public static void main(String[] args) { // 测试数组 int[] arr = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; 阅读全文
posted @ 2022-07-16 18:58 努力学习の小白 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 上代码: package com.liu.pro; import java.util.Arrays; public class bucketSort { public static void main(String[] args) { // 测试数组 int[] arr = {9, 8, 5, 6, 阅读全文
posted @ 2022-07-16 17:17 努力学习の小白 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 上代码 package com.liu.pro; import java.util.Arrays; public class mergeSort { public static void main(String[] args) { // 测试数组 int[] arr = {9, 8, 5, 6, 2 阅读全文
posted @ 2022-07-16 08:16 努力学习の小白 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 上代码: package com.liu.pro; import java.util.Arrays; public class selectionSort { public static void main(String[] args) { int[] arr = {9,8,5,6,2,7,1,3, 阅读全文
posted @ 2022-07-15 21:06 努力学习の小白 阅读(72) 评论(0) 推荐(0) 编辑
Live2D