01 2022 档案

翻转链表
摘要:/** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode() {} * ListNode(int val) { this.val = val; } 阅读全文

posted @ 2022-01-11 21:18 11111ghm 阅读(18) 评论(0) 推荐(0) 编辑

jeecgboot数据库报错
摘要:修改配置文件 select 1 from dual 改成 select 1 因为 dual是oracle公司的 阅读全文

posted @ 2022-01-07 21:49 11111ghm 阅读(218) 评论(0) 推荐(0) 编辑

包装类和基础类的类型转换
摘要:一.将long型转化为int型,这里的long型是基础类型: long a = 10; int b = (int)a; 二.将Long型转换为int 型的,这里的Long型是包装类型: Long a = 10; int b=a.intValue(); 三.将int型转化为long型,这里的int型是 阅读全文

posted @ 2022-01-07 18:08 11111ghm 阅读(153) 评论(0) 推荐(0) 编辑

navicat15 未发现数据源名称并且未指定默认驱动程序
摘要:https://blog.csdn.net/weixin_44515596/article/details/119906070 阅读全文

posted @ 2022-01-07 13:02 11111ghm 阅读(159) 评论(0) 推荐(0) 编辑

Navicat15激活工具
摘要:https://www.jb51.net/article/199496.htm 阅读全文

posted @ 2022-01-04 15:03 11111ghm 阅读(183) 评论(0) 推荐(0) 编辑

二维数组的内存图
摘要:https://www.bilibili.com/video/BV1h7411v7pL?from=search&seid=2496975826224217109&spm_id_from=333.337.0.0 阅读全文

posted @ 2022-01-04 12:16 11111ghm 阅读(33) 评论(0) 推荐(0) 编辑

为什么通过nginx 访问网关,然后转发到后台服务
摘要: 阅读全文

posted @ 2022-01-02 23:25 11111ghm 阅读(118) 评论(0) 推荐(0) 编辑

leetcode回溯法,给定重复元素,求出不重复的集合
摘要:class Solution { List<List<Integer>> lists = new ArrayList<List<Integer>>(); LinkedList<Integer> list = new LinkedList<Integer>(); boolean[] used; pub 阅读全文

posted @ 2022-01-02 15:41 11111ghm 阅读(40) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示