Typora | How do i download and use Typora themes on my local computer system? Summary # General Steps # 从typora主面板,依次进入"文件"=>"偏好面板"=>"外观部分",打开当前使用的主题文 ...
分类:
其他好文 时间:
2020-12-28 11:55:50
阅读次数:
0
容斥原理 概念:简单而言就是求n个集合的并集的方法,求法是将每一项的概率相加再减去重复的部分,在这减去重复的过程中为了防止出现重复减的问题,要用到容斥原理 在范围内有多少数与给定的数互质 思路:假设范围为(a,b),给定数字为n,首先记下数字范围内数字个数(b-a+1)减去不n互质的数的个数结果就是 ...
分类:
其他好文 时间:
2020-12-28 11:21:25
阅读次数:
0
水题~ const int N=25; char g[N][N]; bool vis[N][N]; int n,m; PII st; bool check(int x,int y) { return x>=0 && x<n && y>=0 && y<m; } int bfs() { queue<PI ...
分类:
其他好文 时间:
2020-12-24 12:06:48
阅读次数:
0
简单线段树操作 咕咕咕 Transformation HDU - 4578 vj talk is cheap, chow the code. #include <iostream> #include <cstring> using namespace std; typedef long long l ...
分类:
其他好文 时间:
2020-12-23 12:30:38
阅读次数:
0
Dear Prof. X I am XX, a Ph.D. candidate in the XX group of YY University, which is under the supervision of Prof. ZZ.I am about to finish my Ph.D. stu ...
分类:
其他好文 时间:
2020-12-23 12:24:19
阅读次数:
0
1、查看mysql服务是否起来 2、通过修改mysql的配置文件/etc/my.conf,跳过验证,:wq保存退出 3.重启数据库 运行命令:systemctl restart mysqld 4.进入到mysql数据库 运行命令:mysql -u root 5、修改密码 运行语句:use mysql ...
分类:
数据库 时间:
2020-12-23 11:52:10
阅读次数:
0
sudo apt-get update sudo apt-get install mysql-server #服务启动后端口查询 sudo netstat -anp | grep mysql #服务管理 #启动 sudo service mysql start #停止 sudo service my ...
分类:
数据库 时间:
2020-12-23 11:37:29
阅读次数:
0
程序员书库(ID:CodingBook)猿妹编译链接:https://medium.com/mind-cafe/three-insightful-books-that-elevated-my-quality-of-life-37918c81845c当一些软件工程师看到一篇文章提到“高级”一词,往往就不想点开看了,的确,成为一名高级工程师需要大量的时间和经验,但只要你努力就可以成为一名出色的工程师,
分类:
其他好文 时间:
2020-12-22 13:09:09
阅读次数:
0
前言 先引用一张图片 目录图 一、SQL语句优化 开启慢查询功能 vim /etc/my.cnf [mysqld] slow-query-log = on # 开启慢查询功能 slow_query_log_file = /data/slow-query.log # 慢查询日志存放路径与名称 long ...
分类:
数据库 时间:
2020-12-22 12:33:42
阅读次数:
0
1、首先下载mysql安装文件,下载地址:https://dev.mysql.com/downloads/mysql/ 2、将下载下来的压缩包解压到本地一个文件夹中 3、在文件根目录下新增my.ini文件,配置以下信息: [mysql]# 设置mysql客户端默认字符集default-charact ...
分类:
数据库 时间:
2020-12-21 12:07:17
阅读次数:
0