摘要: 首先,Django文档中是这样描述的:Middleware is a framework of hooks into Django’s request/response processing. It’s a light, low-level “plugin” system for globally 阅读全文
posted @ 2018-07-20 21:13 TotoroCoder^_^ 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 快速排序的基本思想:先随便在无序列表中找一个元素,以这个元素为基准,其他所有元素都跟该元素比,比该元素小的成为一个子序列,比该元素大的成为另一个子序列,接着重复此过程,最终达到排序效果。我们也用递归的方式来实现。 [1, 1, 2, 3, 4] Process finished with exit 阅读全文
posted @ 2018-07-20 20:36 TotoroCoder^_^ 阅读(179) 评论(0) 推荐(0) 编辑