- 博客(6)
- 资源 (1)
- 问答 (3)
- 收藏
- 关注
原创 Guava范围匹配-Range类使用案例
范围开集, 不包含 端点1和端点10 @DisplayName("(1..10) { x | < x < b}") @Test void testOpen() { Console.log(Range.open(1, 10)); assertTrue(Range.open(1, 10).contains(9), "不包含!"); } 范围闭集, 包含 端点1和端点10 @DisplayName("[1..10] { x | <= x <= b}") @Te
2022-03-18 10:22:35
255
原创 插入排序(Java版)
package algorithm.sort; import cn.hutool.core.lang.Console; /** * @author shenwei. 初始数组数据: [-10, -23, 50, 25, 33, 85, -45, 66, 500, 489] 第1步排序结果: [-23, -10, 50, 25, 33, 85, -45, 66, 500, 489] 第...
2020-03-27 16:01:49
369
原创 选择排序(Java版)
package algorithm; import cn.hutool.core.lang.Console; /** * @author shenwei. */ public class SelectionSort { public static void main(String[] args) { //定义一个数组 int[] values =...
2020-03-26 12:11:29
173
原创 九九乘法表(Java版)
package algorithm; import cn.hutool.core.lang.Console; /** * @author shenwei. * 描述 九九乘法表的三种方式 * @date 2019-10-21 * @version 1.0 */ public class MultiplicationTable { /** * 避免魔法赋值 ...
2020-03-25 16:48:47
415
原创 水仙花数(Java版)
package algorithm; import cn.hutool.core.collection.CollUtil; import cn.hutool.core.lang.Console; import java.util.List; /** * @author shenwei. * 描述 水仙花数 * @date 2019-10-21 * @version 1.0 */...
2020-03-25 15:30:52
429
原创 冒泡排序(Java版)
package algorithm; import cn.hutool.core.lang.Console; /** * @author shenwei. */ public class EffervescentSort { public static void main(String[] args) { int[] values = {-10, -23, 50,...
2020-03-20 17:09:18
223
Spring Data JPA 怎么把查询参数转换为对象接收参数?
2022-04-03
我的Spring Mvc整合监听器出问题了。
2022-03-31
TA创建的收藏夹 TA关注的收藏夹
TA关注的人