上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 29 下一页
摘要: 之前清理C盘文件,删除了一个将近5G的东西,然后发现最近开机时间越来越慢,今天居然将近30s了,这可忍不了了 然后就开始找为啥 1. 原因定位 2. 操作文档 # 管理员模式下,开启快速启动功能 powercfg /h on https://iknow.lenovo.com.cn/app/detai 阅读全文
posted @ 2023-09-06 10:04 爱新觉罗LQ 阅读(43) 评论(0) 推荐(0) 编辑
摘要: ## 1. 链接 https://github.com/dezem/SAK/releases https://github.com/dezem/SAK ## 2. NSZ > NSP 格式 ### 2.1 prod.keys 替换 复制yuzu的 prod.keys 覆盖工具的 prod.keys 阅读全文
posted @ 2023-09-05 22:48 爱新觉罗LQ 阅读(1251) 评论(0) 推荐(0) 编辑
摘要: #链表 注意巧用这个构造器: ```java // 1. val // 2. next 节点 ListNode(int val, ListNode next) { this.val = val; this.next = next; } ``` ## 甜姐说 https://tianjietalk.n 阅读全文
posted @ 2023-09-05 17:14 爱新觉罗LQ 阅读(5) 评论(0) 推荐(0) 编辑
摘要: # List删除指定区域的元素 ```bash The returned list is backed by this list, so non-structural changes in the returned list are reflected in this list, and vice- 阅读全文
posted @ 2023-09-05 15:07 爱新觉罗LQ 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 286. 数组拼接 坑比用例 3 2 2,5,6,7,,,9,5,7 1,7,4,3,,4 import java.util.Scanner; import java.util.*; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { 阅读全文
posted @ 2023-09-05 15:02 爱新觉罗LQ 阅读(3) 评论(0) 推荐(0) 编辑
摘要: # 1. 区分大小写 ```java str1.compareTo(str2) ``` ## 2. 不区分大小写 ```java str1.compareToIgnoreCase(str2) ``` 阅读全文
posted @ 2023-09-05 11:35 爱新觉罗LQ 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 定制排序 1. 冠亚军排名 import java.util.Scanner; import java.util.*; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[] 阅读全文
posted @ 2023-09-05 11:32 爱新觉罗LQ 阅读(5) 评论(0) 推荐(0) 编辑
摘要: # 双端队列 ## 1. 求解连续数列 ```bash # 用例 7611 86 ``` ```java import java.util.Scanner; import java.util.*; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class 阅读全文
posted @ 2023-09-05 10:57 爱新觉罗LQ 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 一种字符串压缩表示的解压 给几个用例:3bb,bbb,3b4b import java.util.Scanner; import java.util.*; import java.util.regex.*;; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public 阅读全文
posted @ 2023-09-05 00:17 爱新觉罗LQ 阅读(2) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2023.cnblogs.com/blog/2171496/202309/2171496-20230904124423915-1915833590.png) 举例子 ```java Integer num1 = 10; Integer num2 = 10; System 阅读全文
posted @ 2023-09-04 12:50 爱新觉罗LQ 阅读(4) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 29 下一页