摘要:
查看文件信息 查看文件统计信息:提供几乎所有信息,甚至存储该文件的主、次设备编号,但是不会输出文件类型 stat test 文件类型 file test test ASCII test 查看整个文件内容 cat cat test cat -n test 会输出行号 cat -s test 自动压缩多 阅读全文
摘要:
控制台报错 详细消息: hu Feb 24 18:12:13 CST 2022 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQ 阅读全文
摘要:
时间复杂度: 最好:nlog n 最坏:n*n 平均:nlog n 空间复杂度:log n 稳定性:不稳定 递归实现 def quick_sort(arr, first, last): if first >= last: return pivot = partition2(arr, first, l 阅读全文