上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 27 下一页
摘要: 初学html,如有错误,欢迎指正谢谢。这只是一些基础的知识点,是学习后自己想到总结的,不适合资深者。1、href是Hypertext Reference的缩写。意思是指定超链接目标的URL。是css代码的一种。可以用来加超链接:This is a link2、良好的习... 阅读全文
posted @ 2018-11-08 17:06 Mercury_Lc 阅读(150) 评论(0) 推荐(0)
摘要: #include #include #include struct node{ char data ; struct node *l,*r;};struct node *creat(char *inorder,char *postorder,int len... 阅读全文
posted @ 2018-11-08 15:29 Mercury_Lc 阅读(488) 评论(0) 推荐(0)
摘要: #include using namespace std;struct node{ char data; struct node *lc, *rc;};char a[100];int num = 0;struct node *creat(){ str... 阅读全文
posted @ 2018-11-08 15:22 Mercury_Lc 阅读(150) 评论(0) 推荐(0)
摘要: #include using namespace std;struct node{ char data; struct node *lc, *rc;};char a[100],b[100];int n;struct node *creat(int len,... 阅读全文
posted @ 2018-11-08 15:21 Mercury_Lc 阅读(465) 评论(0) 推荐(0)
摘要: #include using namespace std;struct node{ char data; struct node *lc, *rc;};char s[505];int num;struct node *creat(){ struct ... 阅读全文
posted @ 2018-11-08 15:16 Mercury_Lc 阅读(129) 评论(0) 推荐(0)
摘要: #include #include struct node{ char data; struct node *l,*r;};struct node *root;char st[51];int i;int count;struct node *creat()... 阅读全文
posted @ 2018-11-08 15:09 Mercury_Lc 阅读(98) 评论(0) 推荐(0)
摘要: #include using namespace std;struct Tree{ char data; struct Tree *right; struct Tree *left;};char str[55];int num;struct Tre... 阅读全文
posted @ 2018-11-08 15:08 Mercury_Lc 阅读(159) 评论(0) 推荐(0)
摘要: Cats and Fish HihoCoder - 1631题意:有一些猫和一些鱼,每只猫有固定的吃鱼速度,吃的快的猫优先选择吃鱼,问在x秒时有多少完整的鱼和有多少猫正在吃鱼?题解:模拟一下。两层循环模拟在每一秒时,每个猫的状态是什么样子的,如果在这一秒这个猫没有吃鱼... 阅读全文
posted @ 2018-11-06 23:57 Mercury_Lc 阅读(117) 评论(0) 推荐(0)
摘要: 下了动车后,又颠颠簸簸的在公交车上过了接近一个小时,本来就晕车,于是,到的时候脑子晕死了,而且想吐。可能是没吃早饭的缘故,午饭好好次QWQ。开幕式还是第一次在这种环境下参赛,记得以前是看老师发的学长比赛的场景就是这个样子的,所有的人都在一个大的体育馆里面。找到自己的座... 阅读全文
posted @ 2018-11-05 17:39 Mercury_Lc 阅读(283) 评论(0) 推荐(0)
摘要: #include #include #include #include #include using namespace std;typedef long long ll;const int inf = 0x3fffff;int gra[200][200];int v... 阅读全文
posted @ 2018-11-02 17:08 Mercury_Lc 阅读(142) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 27 下一页