06 2018 档案
摘要:引言 前不久在这篇文章 sort与sorted的区别 中收到了这样的一个提问:“python的 sort 内部实现机制是什么?时间复杂度是多少 ”。几番Google之后有了以下的回答: 内部实现机制为:Timesort 最坏时间复杂度为:O(n log n) 空间复杂度为:O(n) sort 与 s
阅读全文
摘要:七种日志文件 MySQL中有七种日志文件,分别是: 重做日志(redo log) 回滚日志(undo log) 二进制日志(binlog) 错误日志(errorlog) 慢查询日志(slow query log) 一般查询日志(general log) 中继日志(relay log) 重做日志(re
阅读全文
摘要:https://github.com/shimohq/chinese-programmer-wrong-pronunciation
阅读全文
摘要:1. 为什么选择Anaconda? 1.1 什么是 Anaconda? Anaconda是专注于数据分析的Python发行版本,包含了conda、Python等190多个科学包及其依赖项。 1.2 什么是 conda ? conda 是开源包(packages)和虚拟环境(environment)的
阅读全文
摘要:xpath中没有提供对class的原生查找方法。但是 stackoverflow 看到了一个很有才的回答: This selector should work but will be more efficient if you replace it with your suited markup:这
阅读全文