摘要: //单链表的拆分# include # includetypedef struct LNode { char data; //每个结点中存储的数据为字符型 struct LNode *next; //指向后继结点 }LinkList; void Create... 阅读全文
posted @ 2015-09-23 22:41 Joe.Smith 阅读(1343) 评论(0) 推荐(0) 编辑
摘要: //一元多项式的求导#include#include//动态申请空间的函数的头文件typedef struct node //定义节点类型{ float coef; //多项式的系数 int expn; //多项式的指数 struct node... 阅读全文
posted @ 2015-09-23 22:39 Joe.Smith 阅读(1449) 评论(0) 推荐(0) 编辑
摘要: //1:求两集合的交集(链表)。 #include #include struct node { int data; struct node* next; }; void push(struct node **head_ref, int new_data);... 阅读全文
posted @ 2015-09-23 22:36 Joe.Smith 阅读(6241) 评论(0) 推荐(0) 编辑
摘要: 同样的:和上次的博文一样,也是一边写,一边操作,一边截图整理的文档,图片部分不方便一一上传,量大务繁,如有能帮助您的,或是有需求的,这里贴出文档具体,自行下载 链接:http://pan.baidu.com/s/1eQ6RYy2 密码:hhph 主要是参考的网上的教程:可取之点就是通过自... 阅读全文
posted @ 2015-09-23 22:13 Joe.Smith 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 图片上传有难度,因为这是我一边装,一边截图整理成的文档,里面的图片太多啦,有愿意认真看的这里我提供了文档原版链接,自行下载哈 链接:http://pan.baidu.com/s/1eQlnl30 密码:i4ol 首先下载好,虚拟机10版本以及注册机 还要去下载好ubuntu 推荐使用15... 阅读全文
posted @ 2015-09-23 22:05 Joe.Smith 阅读(195) 评论(0) 推荐(0) 编辑