2017年8月15日
摘要:
前段时间一直想用这个功能,百度了好长时间也没找到,正好最近学了js,索性自己来写一下,纯js实现,可能写的也有瑕疵,欢迎指教 外部样式: js部分:
阅读全文
posted @ 2017-08-15 19:31
南风丶丶
阅读(524)
推荐(0)
2017年7月31日
摘要:
下面是从别处看的感觉讲的很好。 这个盒式模型的讲解很详细:http://blog.csdn.net/mercop/article/details/7882000/ 这个例子讲的也不错:http://www.kwstu.com/ArticleView/divcss_2013929173533658
阅读全文
posted @ 2017-07-31 11:16
南风丶丶
阅读(141)
推荐(0)
2017年7月17日
摘要:
上个星期的内容,今天来记一下。一棵树是可以存储在数据中的,方法也很多,在听张老师讲的过程中,说是邻接表和路径枚举是比较常用的方法。 邻接表:添加一个节点是很方便的,但是查询具体的某个节点很费时(树很高)。数据量比较少时适合使用; 路径枚举:存储的数据有相同的前缀或后缀,使用比较方便(比如身份证就是有
阅读全文
posted @ 2017-07-17 17:31
南风丶丶
阅读(1553)
推荐(0)
2017年5月24日
摘要:
3.凑算式 B DEFA + + = 10 C GHI (如果显示有问题,可以参见【图1.jpg】) 这个算式中A~I代表1~9的数字,不同的字母代表不同的数字。比如:6+8/3+952/714 就是一种解法,5+3/1+972/486 是另一种解法。这个算式一共有多少种解法? 注意:你提交应该是个
阅读全文
posted @ 2017-05-24 17:50
南风丶丶
阅读(341)
推荐(0)
2016年11月28日
摘要:
#include #include #include using namespace std; #define N 110 typedef struct{ char vexs[N]; int edge[N][N]; int n, e; }matrix_graph; int vis[N], cnt; void creatMG(matrix_graph &g) { ...
阅读全文
posted @ 2016-11-28 19:50
南风丶丶
阅读(153)
推荐(0)
2016年11月8日
摘要:
next数组讲解推荐这个,讲的比较好:http://www.cnblogs.com/c-cloud/p/3224788.html hdu 1711 #include<cstdio> #include<cstring> #include<iostream> #include<stack> using
阅读全文
posted @ 2016-11-08 17:12
南风丶丶
阅读(115)
推荐(0)
2016年11月7日
摘要:
//二叉树建立,以及三种顺序的输出
阅读全文
posted @ 2016-11-07 19:37
南风丶丶
阅读(124)
推荐(0)
2016年10月17日
摘要:
#include #include #include using namespace std; #define TRUE 1 #define FALSE 0 typedef int ElemType; typedef struct node { ElemType data; struct node *next; }StackNode, *LinkStack; void In...
阅读全文
posted @ 2016-10-17 19:08
南风丶丶
阅读(209)
推荐(0)
2016年9月20日
摘要:
/**线性表的链式表示,创建,插入元素,删除元素,遍历,获得元素等操作。*/ #include<iostream> #include<cstdio> #include<cstring> #include<cstdlib> #include<cmath> #include<cctype> #inclu
阅读全文
posted @ 2016-09-20 17:21
南风丶丶
阅读(280)
推荐(0)
摘要:
/**顺序表的建立,插入,删除,及遍历*/
阅读全文
posted @ 2016-09-20 15:27
南风丶丶
阅读(406)
推荐(0)