摘要: 初学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)