会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
罗剑雄
博客园
首页
新随笔
联系
订阅
管理
2019年4月18日
第四次博客:循环单链表解决约瑟夫环问题
摘要: #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)
2019年4月17日
二叉树的输入和输出
摘要: #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)
2019年4月16日
双向链表的创建,输出,插入数据和删除数据
摘要: #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)
2019年4月15日
双向链表的创建和输出
摘要: #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)
公告