阿迪不是名牌

躺不平+卷不赢

导航

2024年4月29日 #

复习一下算法

摘要: 1 题目描述:定义一个时间类,小时和分钟是其两个私有成员数据。输入一个起始时间和一个结束时间(起始时间早于结束时间),通过运算符重载-(减号),计算这两个时间相隔多少分钟。说明:这两个时间在同一天之内,且采用24小时计时分式,即从00:00-23:59。 2 3 输入格式: 测试输入包含若干测试用例 阅读全文

posted @ 2024-04-29 23:15 阿迪不是名牌 阅读(9) 评论(0) 推荐(0) 编辑

2024年4月26日 #

Java倒计时

摘要: static int countDownTime=100;//用来设置总时间 Timer timer=new Timer(); TimerTask task=new TimerTask() { @Override public void run() { if(countDownTime!=0){ c 阅读全文

posted @ 2024-04-26 17:24 阿迪不是名牌 阅读(7) 评论(0) 推荐(0) 编辑

2024年4月25日 #

今天复习了一遍快速排序

摘要: #include <iostream> using namespace std; #include <stdio.h> const int N = 10e6 + 10; int n; int q[N]; void quick_sort(int q[], int l, int r) { if (l > 阅读全文

posted @ 2024-04-25 23:49 阿迪不是名牌 阅读(5) 评论(0) 推荐(0) 编辑

2024年4月24日 #

JavaScript DOM

摘要: 文档对象模型 获取对象 1.根据id属性值获取,返回单个对象 var h1 = document.getElementById('h1'); 2.根据标签名获取,返回对象数组 var divs = document.getElementByTagName('div'); 3.根据name属性值获取, 阅读全文

posted @ 2024-04-24 18:41 阿迪不是名牌 阅读(2) 评论(0) 推荐(0) 编辑

2024年4月23日 #

今天帮学长写页面了QVQ

摘要: function echarts_3() { var myChart = echarts.init(document.getElementById('echart3')); var years = [ '2008', '2009', '2010', '2011', '2012', '2013', ' 阅读全文

posted @ 2024-04-23 22:25 阿迪不是名牌 阅读(4) 评论(0) 推荐(0) 编辑

2024年4月22日 #

全国地铁查询基本实现,后面就是优化了

摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Login Pag 阅读全文

posted @ 2024-04-22 19:53 阿迪不是名牌 阅读(6) 评论(0) 推荐(0) 编辑

2024年4月19日 #

今天把地铁查询的Android前端做了一下

摘要: //outer public class Outer { private int id; public void out(){ System.out.println("外部类方法的调用"); } public class inner{ public void in(){ System.out.pri 阅读全文

posted @ 2024-04-19 23:14 阿迪不是名牌 阅读(5) 评论(0) 推荐(0) 编辑

2024年4月18日 #

今天改了下地铁查询的后端jpa,写了个web的登陆注册页面

摘要: <!--Login.vue--> <script setup> import { User, Lock } from '@element-plus/icons-vue' import { ref } from 'vue' //控制注册与登录表单的显示, 默认显示注册 const isRegister 阅读全文

posted @ 2024-04-18 23:49 阿迪不是名牌 阅读(7) 评论(0) 推荐(0) 编辑

今天继续改后端的JPA

摘要: //感觉要累死了<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>D 阅读全文

posted @ 2024-04-18 00:22 阿迪不是名牌 阅读(2) 评论(0) 推荐(0) 编辑

2024年4月17日 #

今天整合了一下晨阳给的数据,确定实现两个功能

摘要: 安卓数据库的操作:今天主要学了下安卓数据库方面的简单知识。数据库主要用于复杂的数据储存。 安卓数据库简介:安卓SQLite数据库是一款轻量级的关系型数据库,它的运算速度非常快,占用资源很 少,通常只需要几百KB的内存就足够了。SQLite不仅支持标 准的SQL语法,还遵循了数据库的ACID事务,所以 阅读全文

posted @ 2024-04-17 16:20 阿迪不是名牌 阅读(4) 评论(0) 推荐(0) 编辑