摘要: 算法描述 快速排序采用了分治的思想: **分解:**数组$A[p\ldots r]$被划分为两个子数组$A[p\ldots q-1]$和$A[q+1\ldots r]$,使得$A[p\ldots q-1]$中的元素小于等于$A[q]$,$A[q+1\ldots r]$中的元素大于等于$A[q]$ * 阅读全文
posted @ 2020-11-07 21:58 HachikoT 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 目录结构 . |-- cmake | |-- CompilerSettings.cmake | |-- Options.cmake | |-- ProjectBoost.cmake | `-- UseOpenSSL.cmake |-- CMakeLists.txt `-- hello-cpp |-- 阅读全文
posted @ 2020-11-07 15:06 HachikoT 阅读(1371) 评论(0) 推荐(0) 编辑