摘要:
代码 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 阅读全文
摘要:
代码(带优化) 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 阅读全文
摘要:
1.LocalDateTime获取毫秒数 //获取秒数 Long second = LocalDateTime.now().toEpochSecond(ZoneOffset.of("+8")); //获取毫秒数 Long milliSecond = LocalDateTime.now().toIns 阅读全文
摘要:
代码 package com.suanfa; import java.util.Arrays; /** * TODO * * @author kakaluote * @date 2021年9月10日 上午9:07:58 */ public class BubbleSort { static int[ 阅读全文
摘要:
代码 public class Queue8 { //有几个皇后 int max = 8; //皇后存放位置的结果 int[] array = new int[max]; static int count = 0; static int judgeCount = 0; public static v 阅读全文
摘要:
这是两种情况 解决办法可以用spring-session 阅读全文
摘要:
/** * TODO 约瑟夫问题(丢手绢问题) * * @author kakaluote * @date 2021年8月30日 下午3:57:05 */ public class Josepfu { public static void main(String[] args) { CircleSi 阅读全文
摘要:
public class DoubleLinkedListDemo { public static void main(String[] args) { HeroNode2 heroNode5 = new HeroNode2(5, "卡卡5", "赛亚人"); HeroNode2 heroNode1 阅读全文
摘要:
方法一、直接构建jar包运行的镜像 将项目打包,上传到服务器的指定目录 在该目录下创建Dockerfile文件 vi Dockerfile Dockerfile写入如下指令 FROM java:8 MAINTAINER demo ADD demo-0.0.1-SNAPSHOT.jar demo.ja 阅读全文
摘要:
Starter的准备工作 因为需要一个starter和一个autoconfigure,其中starter引用着autoconfigure 用Spring Init新建一个项目 pom.xml如下 <?xml version="1.0" encoding="UTF-8"?> <project xmln 阅读全文