1 #include <set> 2 #include <ctime> 3 #include <queue> 4 #include <cstdio> 5 #include <utility> 6 #include <cstdlib> 7 #include <iomanip> 8 #include < ...
分类:
编程语言 时间:
2019-06-19 10:44:29
阅读次数:
196
Part 2 结果: part 3 1: 结果: 2: 结果: 实验总结与体会: 对于文件的操作很不熟练,做了很久也没有完成,最终通过百度才有一点头绪。 ...
分类:
其他好文 时间:
2019-06-16 15:30:08
阅读次数:
86
目前流行几种备份方式:1、逻辑备份:使用mysql自带的mysqldump工具进行备份。备份成sql文件形式。优点:最大好处是能够与正在运行的mysql自动协同工作,在运行期间可以确保备份是当时的点,它会自动将对应操作的表锁定,不允许其他用户修改(只能访问)。可能会阻止修改操作。sql文件通用方便移 ...
分类:
数据库 时间:
2019-06-13 13:49:21
阅读次数:
112
最近在整理服务器的脚本,发现以前写的MySQL每天自动备份脚本写的不太好,就重新写了一个: #!/bin/bash####目录环境的配置####export datetime=`date +"%Y%m%d"`export mysqlbin_dir="/usr/local/mysql/bin"expo ...
分类:
数据库 时间:
2019-06-13 13:38:44
阅读次数:
91
在从服务器上执行show slave status;可以查看到很多同步的参数,我们需要特别注意的参数如下: 在从服务器上执行show slave status;可以查看到很多同步的参数,我们需要特别注意的参数如下: Master_Log_File: SLAVE中的I/O线程当前正在读取的主服务器二进 ...
分类:
数据库 时间:
2019-06-13 12:11:49
阅读次数:
116
Part2 基础练习 Code #include<fstream> #include<string> #include<iostream> using namespace std; int main() { char a[20]="merge sucessfully"; ofstream file( ...
分类:
编程语言 时间:
2019-06-12 21:29:02
阅读次数:
153
1 #include <pcl/point_cloud.h> 2 #include <pcl/kdtree/kdtree_flann.h> 3 4 #include <iostream> 5 #include <vector> 6 #include <ctime> 7 8 int 9 main (i ...
分类:
其他好文 时间:
2019-06-12 16:42:02
阅读次数:
84
1.时间表示的几种类型1).时间戳2).字符串的时间3).元组类型的时间importtime#1.时间戳print(time.time())#2.字符串时间print(time.ctime())#3.元组时间print(time.localtime())info=time.localtime()print(info.tm_year)print(info.tm_mon)2.常用的时间转换import
分类:
编程语言 时间:
2019-06-10 18:31:32
阅读次数:
129
Linux目录结构为树状结构,最顶级为‘/’ .,其他目录挂载到树中, 先了解一下绝对路径和相对路径: >>绝对路径: 由根目录 / 写起,如: /data/hosts >>相对路径: cd ../man --不从根目录开始 目录操作常用命令: 目录下所有子目录和文件 : ls 当前所在目录 : p ...
分类:
系统相关 时间:
2019-06-10 13:50:21
阅读次数:
114
模块导入方法 1. 2. 3. __name__ 在执行文件中打印是字符串__main__ 在被调用文件中打印就是被调用文件的路径 例: if __name__ == "__main__" 一般用于被调用的文件的测试 时间模块:time 时间戳:从1970年开始经历了多少秒,一般用于计算 格式化时间 ...
分类:
编程语言 时间:
2019-05-31 16:28:08
阅读次数:
85