上一页 1 ··· 102 103 104 105 106
摘要: import randomdef insert_sort(li): for i in range(1, len(li)): j = i - 1 tmp = li[i] while j >= 0 and li[j] > tmp: li[j+1] = li[j] j -= 1 li... 阅读全文
posted @ 2018-02-03 13:14 小学弟- 阅读(103) 评论(0) 推荐(0)
摘要: 目前Python主要应用领域 : ·云计算,典型应用OpenStack ·Web开发,典型Web框架Django ·科学运算、人工智能,典型库NumPy,SciPy,Matplotlib,pandas ·系统运维 ·金融,量化交易,⾦融分析,在金融⼯程领域,Python不但在用,且用的最多,⽽且重要 阅读全文
posted @ 2018-02-02 19:50 小学弟- 阅读(236) 评论(0) 推荐(0)
摘要: #include <iostream> #include <cstdio> #include <string> #include <cstring> #include <fstream> #include <algorithm> #include <cmath> #include <queue> # 阅读全文
posted @ 2018-02-02 11:56 小学弟- 阅读(138) 评论(0) 推荐(0)
摘要: #include <iostream> #include <cstdio> #include <string> #include <cstring> using namespace std; const int MAX=500009; int sum[MAX<<2]; void pushUp(int 阅读全文
posted @ 2018-02-02 00:17 小学弟- 阅读(123) 评论(0) 推荐(0)
上一页 1 ··· 102 103 104 105 106