#include<iostream> #include<cstring> #include<stdio.h> #include<map> #include<vector> #define cle(a) memset(a,0,sizeof(a)) using namespace std; const ...
分类:
其他好文 时间:
2020-02-02 01:29:08
阅读次数:
66
In the computer world, use restricted resource you have to generate maximum benefit is what we always want to pursue. For now, suppose you are a domin ...
分类:
编程语言 时间:
2020-01-31 12:43:32
阅读次数:
85
目录 1)连接请求的变量 1、max_connections 2、back_log 3、wait_timeout和interative_timeout 2)缓冲区变量 4、key_buffer_size 5、query_cache_size(查询缓存简称QC) 6、max_connect_error ...
分类:
数据库 时间:
2020-01-31 10:43:10
阅读次数:
94
Remember the story of Little Match Girl? By now, you know exactly what matchsticks the little match girl has, please find out a way you can make one s ...
分类:
编程语言 时间:
2020-01-31 10:39:41
阅读次数:
122
show variables like '%max_connections%'; 查看最大连接数,默认是100多,服务端安装完最好修改 ...
分类:
其他好文 时间:
2020-01-31 10:33:40
阅读次数:
57
FROM_UNIXTIME(1571387528)是把时间戳转换成mysql中的日期格式 UNIX_TIMESTAMP(NOW())是吧mysql中的日期格式转换成时间戳 DATE_FORMAT()是吧mysql中的日期格式按照自定义格式转换成对应的格式, 第一个参数是日期格式 使用的时候需要注意, ...
分类:
数据库 时间:
2020-01-31 10:27:59
阅读次数:
103
1.方法一: 代码: #python3.8 #xuguojun #2020.1.30 #导出模块 import turtle as t import random as r #定义画雪 def drawsnow(): t.ht() #隐藏笔头,ht=hideturtle t.pensize(2) # ...
分类:
编程语言 时间:
2020-01-30 12:48:58
阅读次数:
3523
Zhejiang University has 40000 students and provides 2500 courses. Now given the student name lists of all the courses, you are supposed to output the ...
分类:
其他好文 时间:
2020-01-29 20:07:30
阅读次数:
89
Zhejiang University has 40,000 students and provides 2,500 courses. Now given the registered course list of each student, you are supposed to output t ...
分类:
其他好文 时间:
2020-01-29 19:46:43
阅读次数:
81
计算年、月、日需要安装组件包 pip install python-dateutil 当前日期时间 import datetime print datetime.datetime.now() # 2018-05-08 16:53:30.101000 格式化时间 import datetime pri ...
分类:
编程语言 时间:
2020-01-29 14:25:29
阅读次数:
305