传统弱校HFUT的蒟蒻,真相只有一个

摘要: 前几天才装了deepin,国产LX系统感觉作为过渡还是比较容易入手的 linux小白还是遇到不少问题 A.解决linux windows双系统下linux不能打开其他硬盘 一开始以为是硬盘出问题了23333 。 原来是Win10的锅,win10,win8默认开启快速启动,目的是加快开机速度 这样的设 阅读全文
posted @ 2016-01-22 16:26 未名亚柳 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 原来Python的文件配置好环境变量直接双击就可以运行,当然也可以控制台+编辑器 first try: deepin中的.py文件可以在terminal直接运行,有时会生成.pyc文件,相当于缓存类型,也可以直接执行 23333买了树莓派快递运丢了......没办法希望快递公司陪全款,只能祝好运了 阅读全文
posted @ 2016-01-19 00:05 未名亚柳 阅读(459) 评论(0) 推荐(0) 编辑
摘要: 方法:调整时间到2038年。申请30天试用退出pycharm时间调整回来即可。或者:注册时选择 License server ,填http://idea.lanyus.com,然后点击 OK开始学习python,加油! 阅读全文
posted @ 2016-01-18 21:09 未名亚柳 阅读(530) 评论(0) 推荐(0) 编辑
摘要: 数据结构课程可能会考到的排序算法:插入排序 希尔排序 冒泡法 快排 选择排序 堆排序 归并排序一 插入排序#include#include#include#includeusing namespace std;void print(int a[], int n ,int i){ cout#in... 阅读全文
posted @ 2016-01-03 20:25 未名亚柳 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 一 Dijkstra算法/*HDU2544Input每组数据第一行是两个整数N、M(N#include#includeusing namespace std;#define INF 0x3f3f3f3;int map[110][110],dis[110],visited[110];void Dijk... 阅读全文
posted @ 2016-01-03 20:07 未名亚柳 阅读(248) 评论(0) 推荐(0) 编辑
摘要: 一 Prim算法/*POJ1258有n个农场,已知这n个农场都互相相通,有一定的距离,现在每个农场需要装光纤,问怎么安装光纤能将所有农场都连通起来,并且要使光纤距离最小,输出安装光纤的总距离数据:(几个点,矩阵表示各点中间的距离)40 4 9 214 0 8 179 8 0 1621 17 16 0... 阅读全文
posted @ 2016-01-03 17:24 未名亚柳 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 第五:森林转化为二叉树,二叉树转化为森林(链表实现,数组实现)/* 森林转换成二叉树 思路:u的孩子节点为v1, v2, v3....(v1,v2,....互为兄弟节点) 那么将u的一个孩子节点(v1)连在u的左子树上,那么其他的孩子节点都连在v1的右子树上! */#i... 阅读全文
posted @ 2016-01-03 16:24 未名亚柳 阅读(220) 评论(0) 推荐(0) 编辑
摘要: Hello 2016I am really happy to work and study here.Nothing is better than be oneself !It's important to stay calm and happy !I'll be even harder,It's ... 阅读全文
posted @ 2016-01-03 14:47 未名亚柳 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 第一:二叉树三种遍历方式(由前两种得到第三种 HDU1710)#include#include#includeusing namespace std;int num=0;struct donser{ int data; donser*lson; donser*rson;};don... 阅读全文
posted @ 2015-12-30 16:45 未名亚柳 阅读(172) 评论(0) 推荐(0) 编辑
摘要: The order of a TreeProblem DescriptionThe shape of a binary search tree is greatly related to the order of keys we insert. To be precisely:1.insert a ... 阅读全文
posted @ 2015-12-23 19:42 未名亚柳 阅读(287) 评论(0) 推荐(0) 编辑
摘要: Binary Tree TraversalsProblem DescriptionA binary tree is a finite set of vertices that is either empty or consists of a root r and two disjoint binar... 阅读全文
posted @ 2015-12-22 20:14 未名亚柳 阅读(307) 评论(0) 推荐(0) 编辑
摘要: 实验一:编写C++顺序表类,利用顺序存储结构存储数据,并实现其相应功能。功能1:完成顺序表的初始化。功能2:实现顺序表的置空功能。功能3:实现顺序表的输入功能。功能4:求顺序表中第i个元素,要求返回第i个元素是否存在的结果,并返回第i个元素值,利用如下的函数形式实现: bool get_Ele... 阅读全文
posted @ 2015-12-21 10:52 未名亚柳 阅读(400) 评论(0) 推荐(1) 编辑
摘要: http://xcacm.hfut.edu.cn/contest.php?cid=1009打了一下午,最后一道题2333,前面比较基础。问题 A: 求成绩最大值和最小值题目描述GX是宣城校区A班的一名同学,如果GX在B班的话,那么这两个班的平均成绩都会提高.现在给出A班与B班的人数以及成绩,求GX成... 阅读全文
posted @ 2015-12-20 19:44 未名亚柳 阅读(272) 评论(0) 推荐(0) 编辑
摘要: HDU模拟题, 枚举1002 1004 1013 1015 1017 1020 1022 1029 1031 1033 1034 1035 1036 1037 1039 1042 1047 1048 1049 1050 1057 1062 1063 1064 1070 1073 1075 1082 ... 阅读全文
posted @ 2015-12-20 11:11 未名亚柳 阅读(209) 评论(0) 推荐(0) 编辑
摘要: Problem DescriptionOne day, Lin Ji wake up in the morning and found that his pethamster escaped. He searched in the room but didn’t find the hamster. ... 阅读全文
posted @ 2015-12-19 22:15 未名亚柳 阅读(196) 评论(0) 推荐(0) 编辑