问题 K: Length of Bundle Rope 时间限制: 2 Sec 内存限制: 1024 MB提交 状态 题目描述 Due to the development of online shopping, the logistics industry which is highly conn ...
分类:
其他好文 时间:
2020-09-17 22:58:33
阅读次数:
44
tmux 是一个与 GNU screen 类似的程序,可作为后者的替代品使用。 安装 # Ubuntu 或 Debian $ sudo apt-get install tmux # CentOS 或 Fedora $ sudo yum install tmux # Mac $ brew instal ...
分类:
其他好文 时间:
2020-09-17 17:12:30
阅读次数:
39
Linux系统日志/var/log/messages核心系统日志文件,包含了系统启动时的引导消息,以及系统运行时的其他状态消息。I/O错误、网络错误和其他系统错误都会记录到这个文件中。故障诊断时首先要查看的文件守护进程:rsyslogd这个进程关闭后,就不产生/var/log/messages日志通过logrotate工具的控制来实现日志切割每星期切割一次logrotate工具配置文件:/etc/
分类:
系统相关 时间:
2020-09-16 12:30:53
阅读次数:
73
将Excel表格数据导入到Sqlite3数据库文件中 Just_like_fire 2018-06-19 17:46:50 7882 收藏 7 分类专栏: sqlite3 项目开发的时候使用了SQLite数据库,为了测试,需要将一些excel文件中的数据导入到数据库的表中,下面是几个步骤: 建立一张 ...
分类:
数据库 时间:
2020-09-14 18:57:04
阅读次数:
60
第一步:读取三个表数据(用户表、评分表、电影表) mnames=['MovieID','Title','Genres'] user_data = pd.read_table(r".\datas\movielens-1m\users.dat", sep='::', header=None, names ...
分类:
其他好文 时间:
2020-08-01 21:29:14
阅读次数:
83
一.源码环境的搭建: @Component @Scope(scopeName = ConfigurableBeanFactory.SCOPE_SINGLETON,proxyMode = ScopedProxyMode.TARGET_CLASS) public class MyMath impleme ...
分类:
编程语言 时间:
2020-07-30 14:24:46
阅读次数:
64
Ugly numbers are numbers whose only prime factors are 2, 3 or 5. The sequence 1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, ... shows the first 11 ugly numbers. ...
分类:
其他好文 时间:
2020-07-30 01:31:19
阅读次数:
73
zipfile是python里用来做zip格式编码的压缩和解压缩的,由于是很常见的zip格式,所以这个模块使用频率也是比较高的zipfile里有两个非常重要的class, 分别是ZipFile和ZipInfo, 在绝大多数的情况下,我们只需要使用这两个class就可以了。 ZipFile是主要的类, ...
分类:
编程语言 时间:
2020-07-29 21:51:29
阅读次数:
85
Python3 之 OS模块详解: os.sep:取代操作系统特定的路径分隔符 os.name:指示你正在使用的工作平台。比如对于Windows,它是'nt',而对于Linux/Unix用户,它是'posix'。 os.getcwd:得到当前工作目录,即当前python脚本工作的目录路径。 os.g ...
分类:
编程语言 时间:
2020-07-29 21:31:22
阅读次数:
77
1. Maven依赖 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.6.1</version> </dependency> <dependency ...
分类:
其他好文 时间:
2020-07-29 09:53:01
阅读次数:
76