最近做题养成了一个不太好的习惯,习惯性的先去看discuss有没有坑,越是惧怕错误越可能出错,之后的锻炼,出错再去check discuss吧 简单的BFS #include <iostream> #include <algorithm> #include <queue> #include <str ...
分类:
其他好文 时间:
2021-04-21 12:34:23
阅读次数:
0
前言 眼看研究生生涯就要结束了,为了能在最后时刻留下一点拼搏的痕迹,写下了这些日志。 日志主要用来记录自己一天的所得,论文+工作+其他。 论文 今天对第二篇论文《BiSRU+分层注意力机制》进行的大幅修改,按照编辑要求进行了相应的扩充,已发送编辑邮箱,等待结果 主要内容: 删除了第一节后面贡献点的介 ...
分类:
其他好文 时间:
2021-04-21 12:32:31
阅读次数:
0
第一种:用indexOf方法 这种方法最简单最直观,也最容易理解,代码如下: 1 var arr = [2, 8, 5, 0, 5, 2, 6, 7, 2] 2 var newArr = [] 3 for (var i = 0; i < arr.length; i++) { 4 if (newArr ...
分类:
编程语言 时间:
2021-04-21 12:27:04
阅读次数:
0
document.write插入标签会覆盖页面的问题 document.write插入js标签会覆盖页面又两种情况: 通过onclick() 点击事件触发执行document.write(),会使document.write()覆盖原来的页面。 在window.onload里面执行document. ...
分类:
其他好文 时间:
2021-04-21 11:53:09
阅读次数:
0
datebase_router.py # database_router.pyfrom django.conf import settingsDATABASE_MAPPING = settings.DATABASE_APPS_MAPPINGclass DatabaseAppsRouter(objec ...
分类:
数据库 时间:
2021-04-21 11:52:46
阅读次数:
0
open -n /Applications/Google\ Chrome.app/ --args --disable-web-security --user-data-dir=/Users/hooliy/Documents/MyChromeDevUserData open -n /Applicati ...
分类:
系统相关 时间:
2021-04-21 11:49:55
阅读次数:
0
##引用完整性 学生表 Id 名字 性别 成绩表 Id 学生ID 成绩 Create table stu7( Id int primary key; Name varchar(50) ) Create table score( Id int primary key, Sid int, Score d ...
分类:
其他好文 时间:
2021-04-20 15:46:35
阅读次数:
0
You are given 2 arrays a and b, both of size n. You can swap two elements in b at most once (or leave it as it is), and you are required to minimize t ...
分类:
移动开发 时间:
2021-04-20 15:01:50
阅读次数:
0
VS2010 NX8.5 //定义函数 Point3d WCSPointTransposeCsysPoint(Point3d origionPoint3D);//工作部件绝对坐标值转化为新坐标下点坐标值 Point3d PointMatrixToNewPoint(Point3d origionPoi ...
分类:
其他好文 时间:
2021-04-20 14:58:16
阅读次数:
0
索引优化 1.1SQL性能下降的原因 查询语句写的很不好; 索引失效 单值索引 select * from user where name=''; create index idx_user_name on user(name); 复合索引 select * from user where name ...
分类:
其他好文 时间:
2021-04-20 14:31:28
阅读次数:
0