摘要: 快速排序法 ①先从队尾开始向前扫描且当low < high时,如果a[high] > tmp,则high–,但如果a[high] < tmp,则将high的值赋值给low,即arr[low] = a[high],同时要转换数组扫描的方式,即需要从队首开始向队尾进行扫描了②同理,当从队首开始向队尾进行 阅读全文
posted @ 2021-06-17 10:10 薄荷味日记 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 安装celery pip install Celery celery 手册: https://www.celerycn.io/ru-men/celery-chu-ci-shi-yong 安装celery-redis celery-redis:如果把redis当做broker,需要安装 pip ins 阅读全文
posted @ 2021-06-17 09:48 薄荷味日记 阅读(1022) 评论(2) 推荐(0) 编辑
摘要: FastAPI 教程翻译 : https://blog.csdn.net/xuqingskywolf/category_10022295.html 介绍:https://blog.csdn.net/xuqingskywolf/article/details/106438933 特征:https:// 阅读全文
posted @ 2021-06-17 09:44 薄荷味日记 阅读(107) 评论(0) 推荐(0) 编辑