计划 为中小学生设计的四则运算 开发 1,分析需求 包含加减乘除的两位整数运算 2,生成设计文档 创建一个TowNumber接口,包含一个yunsuan()方法,再创建一个Aligorithm类实现接口,再分别创建Add,Except , Reduce, Ride类继承Aligorithm类重写yu ...
分类:
其他好文 时间:
2021-04-12 11:53:44
阅读次数:
0
LeetCode148 排序链表 题目 给定链表的头结点head,返回排序后的链表,按照由小到大的顺序。 案例1 输入:head = [4,2,1,3] 输出:[1,2,3,4] 分析 使用归并排序,先找出中间节点(快慢指针:快指针每次走两步,慢指针每次走一步,当快指针走到链表最后,慢指针所在的位置 ...
分类:
编程语言 时间:
2021-04-10 13:34:31
阅读次数:
0
添加 Swagger 依赖 <!-- https://mvnrepository.com/artifact/io.springfox/springfox-boot-starter --> <dependency> <groupId>io.springfox</groupId> <artifactId ...
分类:
编程语言 时间:
2021-04-10 13:06:00
阅读次数:
0
from sqlalchemy import create_engine, MetaData from sqlalchemy.ext.declarative import declarative_base from sqlalchemy.orm import sessionmaker, scoped ...
分类:
数据库 时间:
2021-04-10 13:00:24
阅读次数:
0
垂直外边距的重叠(折叠) 特性描述:在盒模型设置外边距时,相邻的垂直方向上,两个元素的外边距会发生重叠现象 兄弟元素 (1)兄弟元素间的相邻垂直外边距会取两者之间的较大值(两者都是正值) (2)特殊情况 - 如果相邻的外边距一正一负,则取两者的和 - 如果相邻的外边距都是负值,则取两者中绝对值较大的 ...
分类:
Web程序 时间:
2021-04-10 12:53:33
阅读次数:
0
以下是针对移动端所设计的样式,如需pc端的请自行更改 window.onload = function(){ window.alert = function(msg, callback) { var div = document.createElement("div"); div.innerHTML ...
分类:
其他好文 时间:
2021-04-09 13:35:30
阅读次数:
0
test_or.py from sqlalchemy import Table, Column, Integer,String,DATE, ForeignKey from sqlalchemy.orm import relationship from sqlalchemy.ext.declarati ...
分类:
编程语言 时间:
2021-04-09 12:56:13
阅读次数:
0
mAP https://jonathan-hui.medium.com/map-mean-average-precision-for-object-detection-45c121a31173 SVM https://towardsdatascience.com/https-medium-com-p ...
分类:
其他好文 时间:
2021-04-08 14:01:18
阅读次数:
0
题目:People in Mars represent the colors in their computers in a similar way as the Earth people. That is, a color is represented by a 6-digit number, w ...
分类:
其他好文 时间:
2021-04-08 13:28:06
阅读次数:
0
最近找工作,感觉差的太多了,要学的东西还很多。希望自己可以每天都学习会,加油!如果有写的不对的欢迎大家留言分享经验哦! jvm类加载流程: Main方法中有一个类Math.class类,当加载math类的时候, 1.Windows系统下 java.exe会调用底层的jvm.dll文件创建虚拟机(由C ...
分类:
其他好文 时间:
2021-04-08 13:01:42
阅读次数:
0