展开
拓展 关闭
订阅号推广码
GitHub
视频
公告栏 关闭

09 2023 档案

摘要:编写实体类 public class Student { String name; // 姓名 String sex; // 性别 int sno; // 学号 int score; // 成绩 public String getName() { return name; } public void 阅读全文
posted @ 2023-09-29 18:50 DogLeftover 阅读(8) 评论(0) 推荐(0) 编辑
摘要:编写实体类 public class Student { String name; // 姓名 String sex; // 性别 int sno; // 学号 int score; // 成绩 public String getName() { return name; } public void 阅读全文
posted @ 2023-09-29 17:26 DogLeftover 阅读(22) 评论(0) 推荐(0) 编辑
摘要:使用链表模拟队列 案例1 // 创建节点类 public class Node { int n; Node next; } // 编写方法 public class Queue { Node head = new Node(); Node last = new Node(); private int 阅读全文
posted @ 2023-09-29 16:24 DogLeftover 阅读(13) 评论(0) 推荐(0) 编辑
摘要:使用数组模拟队列 案例1 public class Queue { private int[] num= new int[5]; private int len=0; public int size(){ return this.len; } //添加 public int add(int n){ 阅读全文
posted @ 2023-09-29 16:13 DogLeftover 阅读(3) 评论(0) 推荐(0) 编辑
摘要:创建节点类 public class Node { int n; Node next; } 编写方法 public class MyLinkList { Node head = new Node(); private int len=0; // 获取长度 public int size(){ ret 阅读全文
posted @ 2023-09-29 15:36 DogLeftover 阅读(8) 评论(0) 推荐(0) 编辑
摘要:编写方法 public class MyArrayList { private int[] n = new int[10]; //动态数组 private int size=0; // 长度 public int size(){ return this.size; } //添加一个元素 public 阅读全文
posted @ 2023-09-29 15:29 DogLeftover 阅读(7) 评论(0) 推荐(0) 编辑
摘要:创建节点类 public class Node { int n; Node next; } 第1次推导 public class test { public static void main(String[] args) { // 新建节点 Node node1 = new Node(); node 阅读全文
posted @ 2023-09-29 15:22 DogLeftover 阅读(12) 评论(0) 推荐(0) 编辑
摘要:创建节点类 public class Node { int n; Node next; } 第1次推导 public class test { public static void main(String[] args) { // 新建节点 Node node1 = new Node(); node 阅读全文
posted @ 2023-09-29 15:14 DogLeftover 阅读(25) 评论(0) 推荐(0) 编辑
摘要:数组降序的情况下插入数据依然是降序 第1次推导 public class test { public static void main(String[] args) { int[] ints = {90, 80, 70}; int tmp = 85; // 与第1个数比较时 // [0][1][2] 阅读全文
posted @ 2023-09-29 14:58 DogLeftover 阅读(16) 评论(0) 推荐(0) 编辑
摘要:第1次推导 public class test { public static void main(String[] args) { int[] ints = {2,5,3,1,8,9}; int tmp; // 存储临时变量 int j; // 开始比较第几位的数 // 第1次 // 2,5,3, 阅读全文
posted @ 2023-09-29 14:45 DogLeftover 阅读(4) 评论(0) 推荐(0) 编辑
摘要:第1次推导 public class test { public static void main(String[] args) { int[] ints = {6, 5, 9, 5}; int tmp; if(ints[0]>ints[1]){ tmp = ints[0]; ints[0] = i 阅读全文
posted @ 2023-09-29 14:42 DogLeftover 阅读(4) 评论(0) 推荐(0) 编辑
摘要:必须是1个有序的数组 第1次推导 public class test { public static void main(String[] args) { int[] ints = {1,2,3,5,7,9}; int a = 6; // 要查找的数 int i=0; //起始位置 int j=in 阅读全文
posted @ 2023-09-29 14:35 DogLeftover 阅读(5) 评论(0) 推荐(0) 编辑
摘要:打印等腰三角形 第1次推导 public class test { public static void main(String[] args) { // 行数 int a = 3; System.out.println(); System.out.print(" "); System.out.pr 阅读全文
posted @ 2023-09-29 14:15 DogLeftover 阅读(10) 评论(0) 推荐(0) 编辑
摘要:堆叠图 名称 2020 2021 2022 衣服 12 35 78 裤子 34 56 45 帽子 22 43 31 衬衫 57 37 23 鞋子 74 46 56 袜子 33 54 78 插入,图表右下角,所有图表,柱形图 直方图,点击直方图x轴,设置坐标轴格式,设置箱宽度 重叠占比 右键图表,设置 阅读全文
posted @ 2023-09-24 16:49 DogLeftover 阅读(62) 评论(0) 推荐(0) 编辑
摘要:数据透视表使用 选取数据区域,点击插入,数据透视表,表格和区域,选择放置数据透视表的位置 将某个字段放到右侧筛选区域,可以进行筛选 数据透视表右侧隐藏时,右键数据透视表,显示字段列表 将某一个字段中的每个类型单独生成工作表 选取数据区域,插入数据透视表,将该字段放到右侧筛选区域 分析,选项,显示报表 阅读全文
posted @ 2023-09-24 16:49 DogLeftover 阅读(34) 评论(0) 推荐(0) 编辑
摘要:windows系统安装 百度"mysql下载" centos系统安装 https://dev.mysql.com/downloads/mysql/ 查看详情 创新版(Innovation)和长期支持版(LTS,Long-Term Support) 如果mysql环境需要继续保持已经固定的行为,选择L 阅读全文
posted @ 2023-09-24 15:50 DogLeftover 阅读(32) 评论(0) 推荐(0) 编辑
摘要:构建项目 // 安装angular-cli npm install -g @angular/cli // 创建项目 ng new angular01 // 是否安装路由 // 选择(css/less/sass) // 进入项目 cd angular01 // 安装依赖 npm install // 阅读全文
posted @ 2023-09-22 18:45 DogLeftover 阅读(13) 评论(0) 推荐(0) 编辑
摘要:通过git bash here使用密码或token连接远程仓库拉取私有项目成功后,在idea中再次拉取或推送还是需要验证密码或token 点击查看详情 gitee新建1个私有仓库用于测试 本地文件夹拉取项目,由于是私有项目,需要输入邮箱和密码进行验证 admin@DESKTOP-VJRK14B MI 阅读全文
posted @ 2023-09-22 18:45 DogLeftover 阅读(33) 评论(0) 推荐(0) 编辑