上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 23 下一页
摘要: 代码 public class InsertSort { static int[] arr = {6,7,0,-5,8,1,3,2}; public static void main(String[] args) { System.out.println("排序前:" +Arrays.toStrin 阅读全文
posted @ 2021-09-14 14:48 卡卡罗特琪琪 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 代码(带优化) public class SelectSort { static int[] arr = {6,7,0,-5,8,1,3,2}; public static void main(String[] args) { System.out.println("排序前:" + Arrays.t 阅读全文
posted @ 2021-09-13 14:22 卡卡罗特琪琪 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 1.LocalDateTime获取毫秒数 //获取秒数 Long second = LocalDateTime.now().toEpochSecond(ZoneOffset.of("+8")); //获取毫秒数 Long milliSecond = LocalDateTime.now().toIns 阅读全文
posted @ 2021-09-10 16:20 卡卡罗特琪琪 阅读(314) 评论(0) 推荐(0) 编辑
摘要: 代码 package com.suanfa; import java.util.Arrays; /** * TODO * * @author kakaluote * @date 2021年9月10日 上午9:07:58 */ public class BubbleSort { static int[ 阅读全文
posted @ 2021-09-10 10:22 卡卡罗特琪琪 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 代码 public class Queue8 { //有几个皇后 int max = 8; //皇后存放位置的结果 int[] array = new int[max]; static int count = 0; static int judgeCount = 0; public static v 阅读全文
posted @ 2021-09-09 16:42 卡卡罗特琪琪 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 这是两种情况 解决办法可以用spring-session 阅读全文
posted @ 2021-09-05 14:47 卡卡罗特琪琪 阅读(26) 评论(0) 推荐(0) 编辑
摘要: /** * TODO 约瑟夫问题(丢手绢问题) * * @author kakaluote * @date 2021年8月30日 下午3:57:05 */ public class Josepfu { public static void main(String[] args) { CircleSi 阅读全文
posted @ 2021-09-02 10:32 卡卡罗特琪琪 阅读(83) 评论(0) 推荐(0) 编辑
摘要: public class DoubleLinkedListDemo { public static void main(String[] args) { HeroNode2 heroNode5 = new HeroNode2(5, "卡卡5", "赛亚人"); HeroNode2 heroNode1 阅读全文
posted @ 2021-08-30 11:52 卡卡罗特琪琪 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 方法一、直接构建jar包运行的镜像 将项目打包,上传到服务器的指定目录 在该目录下创建Dockerfile文件 vi Dockerfile Dockerfile写入如下指令 FROM java:8 MAINTAINER demo ADD demo-0.0.1-SNAPSHOT.jar demo.ja 阅读全文
posted @ 2021-08-25 09:54 卡卡罗特琪琪 阅读(1418) 评论(0) 推荐(0) 编辑
摘要: Starter的准备工作 因为需要一个starter和一个autoconfigure,其中starter引用着autoconfigure 用Spring Init新建一个项目 pom.xml如下 <?xml version="1.0" encoding="UTF-8"?> <project xmln 阅读全文
posted @ 2021-08-25 09:46 卡卡罗特琪琪 阅读(57) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 23 下一页