摘要: #include<iostream> #include<vector> using namespace std; const int N = 1000; struct { int to; int w; int next; }edge[N]; int head[N]; void add_edge(in 阅读全文
posted @ 2024-05-16 21:08 DaWeiGuo 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 1.最近要日语考试了,写了个随机出假名的简单程序,效果图如下: 2.哈勃查毒检测 该版本包含浊音不包含拗音,点击下载 该版本包含浊音、拗音,点击下载 阅读全文
posted @ 2023-11-17 11:13 DaWeiGuo 阅读(39) 评论(3) 推荐(0) 编辑
摘要: 1. 起因:购买的esp32cam烧录底座(ch340)无法刷入MicroPython,将ch340的驱动重装后,即使刷入也不能正常连接thonny。 2. 看了好几个csdn的帖子也无济于事,后看到B站up邪恶的胖次菌的视频[esp32cam烧录笔记openmv/micropython](http 阅读全文
posted @ 2023-08-07 14:03 DaWeiGuo 阅读(874) 评论(0) 推荐(0) 编辑
摘要: ### 1、statistics按钮的使用![image](https://img2023.cnblogs.com/blog/2286357/202306/2286357-20230609215628806-1452110841.png) ### 2、inspectors按钮的使用![image]( 阅读全文
posted @ 2023-06-09 22:15 DaWeiGuo 阅读(9) 评论(0) 推荐(0) 编辑
摘要: ![image](https://img2023.cnblogs.com/blog/2286357/202306/2286357-20230609154113629-879530572.png) 阅读全文
posted @ 2023-06-09 15:41 DaWeiGuo 阅读(4) 评论(0) 推荐(0) 编辑
摘要: package lanqiao; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.ArrayList; import java. 阅读全文
posted @ 2022-04-09 00:34 DaWeiGuo 阅读(25) 评论(0) 推荐(0) 编辑
摘要: import java.util.*; import java.io.*; public class Main{ public static void main(String[] args) throws IOException { BufferedReader reader = new Buffe 阅读全文
posted @ 2022-04-05 18:58 DaWeiGuo 阅读(91) 评论(0) 推荐(0) 编辑
摘要: package daweiguo.other; /** * @Author DaWeiGuo * @Date 2022/3/19 21:04 * @Desc: */ public class HeapSort { public static void main(String[] args) { He 阅读全文
posted @ 2022-03-21 16:51 DaWeiGuo 阅读(16) 评论(0) 推荐(0) 编辑
摘要: package daweiguo.other; import java.util.Arrays; /** * @Author DaWeiGuo * @Date 2022/3/21 16:16 * @Desc: 差分数组 */ public class DifferenceArray { public 阅读全文
posted @ 2022-03-21 16:51 DaWeiGuo 阅读(190) 评论(0) 推荐(0) 编辑
摘要: CTRL+H 查看类结构 CTRL+D 复制当前行代码到下一行 阅读全文
posted @ 2022-01-12 20:05 DaWeiGuo 阅读(21) 评论(0) 推荐(0) 编辑