如何总结和整理学术文献? 学习资料 : "世上最强大的科研工具手册" 与其给 PDF 分类,真不如读完文章之后好好整理「读后的 notes」,以后需要什么内容就直接在 notes 里面搜索。 1. 需要在 notes 里面清楚的标注文章的 title,作者信息,和会议信息 那么问题来了,应该用什么样 ...
分类:
其他好文 时间:
2018-01-13 18:50:01
阅读次数:
181
介绍 SQLAlchemy是一个基于Python实现的ORM框架。该框架建立在 DBAPI之上,使用关系对象映射进行数据库操作,简言之便是:将类和对象转换成SQL,然后使用数据API执行SQL并获取执行结果。 1 pip3 install sqlalchemy 1 pip3 install sqla ...
分类:
数据库 时间:
2018-01-11 17:35:05
阅读次数:
195
"简单般Bzoj2154: Crash的数字表格" Sol 增加了数据组数T define RG register define IL inline define Fill(a, b) memset(a, b, sizeof(a)) using namespace std; typedef long ...
分类:
其他好文 时间:
2018-01-11 11:39:58
阅读次数:
125
/*修改用户密码:1.输入cmd打开dos窗口2.sqlplus/nolog3.conn/as sysdba4.alter user system identified by orcl;*/ /**数据完整性指存储在数据库中的所有数据值均正确的状态。如果数据库中存储有不正确的数据值,则该数据库称为已 ...
分类:
数据库 时间:
2018-01-10 23:51:51
阅读次数:
509
Sol 首先有个结论 $\sum_{i=1}^{m}\sum_{j=1}^{n}d(i j)=\sum_{i=1}^{m}\sum_{j=1}^{n}\sum_{x|i}\sum_{y|i}[gcd(x,y)==1]$ 证明:可以看 "po姐的博客" 接着这个式子推 $$ 原式=\sum_{x=1} ...
分类:
其他好文 时间:
2018-01-10 18:34:26
阅读次数:
149
解决方案:https://askubuntu.com/questions/774986/appstreamcli-hanging-with-100-cpu-usage-during-update 搬运过来是: This is caused by a bug https://bugs.launchpa ...
分类:
移动开发 时间:
2018-01-10 17:04:25
阅读次数:
1317
题目: http://poj.org/problem?id=2728 题解: 二分比率,然后每条边边权变成w-mid*dis,用prim跑最小生成树就行 ...
分类:
其他好文 时间:
2018-01-10 11:33:37
阅读次数:
119
题意 $求ans=\sum_{i=1}^{n}\sum_{j=1}^{n}lcm(i, j)$ n,m define RG register define IL inline define Fill(a, b) memset(a, b, sizeof(a)) using namespace std; ...
分类:
其他好文 时间:
2018-01-09 20:10:36
阅读次数:
156
数论总结1(基础数论) 进制位、质数、欧拉函数、欧几里得、同余方程、中国剩余...... ...
分类:
其他好文 时间:
2018-01-09 13:34:57
阅读次数:
281
一、Bootstrap介绍 Bootstrap是Twitter开源的基于HTML、CSS、JavaScript的前端框架。 它是为实现快速开发Web应用程序而设计的一套前端工具包。 它支持响应式布局,并且在V3版本之后坚持移动设备优先。 二、为什么要使用Bootstrap? 在Bootstrap出现 ...
分类:
编程语言 时间:
2018-01-08 21:07:45
阅读次数:
182