会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
liuqianxun
博客园
首页
博问
闪存
新随笔
订阅
管理
上一页
1
2
3
下一页
2020年9月23日
system()函数
摘要: system("cls") 清屏 system("color if") 显示屏幕颜色 system("pause") 一些system()函数的参数及实现的功能表格里的内容可以通过 system(“HELP”);语句获取
阅读全文
posted @ 2020-09-23 15:32 angelliu
阅读(246)
评论(0)
推荐(0)
编辑
2020年9月14日
unittest 框架
摘要: 参考:https://www.cnblogs.com/miki-peng/p/12501341.html 单元最小测试: 最小可测试单元通常是指函数或者类,一般是开发来做的,按照测试阶段来分,就是单元测试、集成测试、系统测试以及验收测试 在python基础中,我们有讲过一个assert断言,使用方法
阅读全文
posted @ 2020-09-14 08:20 angelliu
阅读(71)
评论(0)
推荐(0)
编辑
2020年9月9日
code blocks的快捷键
摘要: 参考:https://blog.csdn.net/qq_33302004/article/details/80297501 https://blog.csdn.net/u013820168/article/details/107043720?utm_medium=distribute.pc_rele
阅读全文
posted @ 2020-09-09 21:31 angelliu
阅读(161)
评论(0)
推荐(0)
编辑
2020年8月24日
电脑清理垃圾
摘要: @echo off echo 正在清除系统垃圾文件,请稍等...... del /f /s /q %systemdrive%\*.tmp del /f /s /q %systemdrive%\*._mp del /f /s /q %systemdrive%\*.log del /f /s /q %s
阅读全文
posted @ 2020-08-24 08:09 angelliu
阅读(114)
评论(0)
推荐(0)
编辑
2020年8月5日
链式前向星
摘要: 前向星是一种特殊的边集数组,我们把边集数组中的每一条边按照起点从小到大排序,如果起点相同就按照终点从小到大排序, 并记录下以某个点为起点的所有边在数组中的起始位置和存储长度,那么前向星就构造好了. 核心代码: struct Edge{ int next; int to; int w; }edge[m
阅读全文
posted @ 2020-08-05 17:12 angelliu
阅读(76)
评论(0)
推荐(0)
编辑
2020年7月31日
Kruskal算法
摘要: 转载于:http://data.biancheng.net/view/41.html
阅读全文
posted @ 2020-07-31 16:30 angelliu
阅读(37)
评论(0)
推荐(0)
编辑
并查集
摘要: 核心操作: 1、将两个集合合并2、询问两个数是否在一个集合中 找父亲节点+路径压缩优化 核心代码: int find(int x) //返回x的祖宗结点 + 路径优化 { if(p[x]!=x) p[x] = find(p[x]); // p[x]!=x,说明不是祖宗结点 return p[x];
阅读全文
posted @ 2020-07-31 00:45 angelliu
阅读(44)
评论(0)
推荐(0)
编辑
2020年6月9日
高维前缀和
摘要: 转载于:https://www.cnblogs.com/heyuhhh/p/11585358.html 转载于:https://www.cnblogs.com/charles1999/p/12508658.html#toc
阅读全文
posted @ 2020-06-09 23:34 angelliu
阅读(96)
评论(0)
推荐(0)
编辑
2020年6月8日
头文件模板
该文被密码保护。
阅读全文
posted @ 2020-06-08 15:59 angelliu
阅读(0)
评论(0)
推荐(0)
编辑
2020年6月2日
比较函数大小
摘要: 结构体内嵌比较函数: sort( a, a+ n, cmp) 比较慢,排序有可能就TLE了 故用 结构体内嵌比较函数:bool operator < (const node &x) const{}排序的时候,没有参数的l,r比有参数的x.l,x.r的级别高,就相当于是比较的时候的第一个数 一个变量排
阅读全文
posted @ 2020-06-02 17:45 angelliu
阅读(781)
评论(0)
推荐(0)
编辑
上一页
1
2
3
下一页