摘要: #include <stdio.h>#include <stdlib.h>typedef struct aa{ int data; struct aa *next;}Link;int n; Link * CreateLink(Link *L){ Link *p,*q; int i; printf(" 阅读全文
posted @ 2019-04-18 21:51 罗剑雄 阅读(388) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <stdlib.h> typedef struct tree{ char data; struct tree *ltree,*rtree; }Tree; Tree * createTree(Tree *T){ char n; T=(Tree * 阅读全文
posted @ 2019-04-17 21:40 罗剑雄 阅读(490) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <stdlib.h> typedef struct aa{ int data; struct aa *rlink; struct aa *llink; }DLink; DLink * createLink(DLink *head){//头节点 阅读全文
posted @ 2019-04-16 16:05 罗剑雄 阅读(468) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <stdlib.h> typedef struct aa{ int data; struct aa *rlink; struct aa *llink; }DLink; DLink * createLink(DLink *head){//头节点 阅读全文
posted @ 2019-04-15 21:26 罗剑雄 阅读(1129) 评论(0) 推荐(0)