#include<bits/stdc++.h> using namespace std; #define lson l,m,rt<<1 #define rson m+1,r,rt<<1|1 #define rush! ios::sync_with_stdio(false);cin.tie(0); c ...
分类:
其他好文 时间:
2021-01-13 11:33:41
阅读次数:
0
user root; worker_processes 1; error_log /var/log/nginx/error.log warn; pid /var/run/nginx.pid; events { #use epoll; worker_connections 65535; } http ...
分类:
系统相关 时间:
2021-01-13 10:45:25
阅读次数:
0
1.mysql -u root -p 回车输入密码进入mysql 2. 执行show variables like "max_connections"; 3.执行set GLOBAL max_connections=1000; 4.执行show variables like "max_connect ...
分类:
数据库 时间:
2021-01-08 11:38:08
阅读次数:
0
在此记录下: 正常情况下我们的data:$('#form').serialize(),但是这个只是序列化了表单的数据,不带上file文件,并且,我们需要使用原生的JS获取form( document.getElementById),这和JQ的$('#form') 获取到的对象的节点不一样 var f ...
分类:
Web程序 时间:
2021-01-08 10:40:36
阅读次数:
0
给定给 \(n\) 个点,以及 \(m\) 条线段,选择 \(s\) 条线段,使得至少被一个线段覆盖的点的坐标从小到大排序后,第 \(k\) 大最小,没有则输出 \(-1\)。 \(n, m, s, k \leq 1500\)。 二分答案 \(ans\),判断是否存在一个方案使小于等于 \(ans\ ...
分类:
其他好文 时间:
2021-01-07 12:42:20
阅读次数:
0
Linux 实用指令之查看端口开启情况 netstat -ntlp 查看端口使用情况! netstat -ntlp | grep 80 查看具体的端口是否使用! # netstat -ntlp Active Internet connections (only servers) Proto Recv ...
分类:
系统相关 时间:
2021-01-07 12:28:02
阅读次数:
0
<!-- 父组件 --> <template> <view> <syncA :title.sync="title"></syncA> </view> </template> <script> export default { data() { return { title:"hello vue.js ...
分类:
其他好文 时间:
2021-01-07 11:53:43
阅读次数:
0
1 #define IO std::ios::sync_with_stdio(0) 2 #include <bits/stdc++.h> 3 using namespace std; 4 #define mk make_pair 5 #define pb push_back 6 const int ...
分类:
其他好文 时间:
2021-01-06 11:49:40
阅读次数:
0
1 import App from "@/App.vue" 2 import Vue from 'vue'; 3 import { shallowMount, mount, createLocalVue } from "@vue/test-utils" 4 import "babel-polyfil ...
分类:
移动开发 时间:
2021-01-04 10:37:16
阅读次数:
0
格式: (): type:必须,说明commit类别 feat-新功能 fix-一次提交修复问题 to-多次提交最终修复问题 docs-文档 style-格式 refactor-重构 chore-构建过程或辅助工具变动 revert-回滚到上一个版本 merge-代码合并 sync-同步主线或分支的 ...
分类:
其他好文 时间:
2021-01-01 11:58:02
阅读次数:
0