会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
小学弟-
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
102
103
104
105
106
2018年2月3日
python实现插入排序
摘要: 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)
2018年2月2日
Why python?
摘要: 目前Python主要应用领域 : ·云计算,典型应用OpenStack ·Web开发,典型Web框架Django ·科学运算、人工智能,典型库NumPy,SciPy,Matplotlib,pandas ·系统运维 ·金融,量化交易,⾦融分析,在金融⼯程领域,Python不但在用,且用的最多,⽽且重要
阅读全文
posted @ 2018-02-02 19:50 小学弟-
阅读(236)
评论(0)
推荐(0)
线段树-区间更新-HDU 1689
摘要: #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)
线段树-单点更新-HDU 1166 敌兵布阵
摘要: #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
公告