摘要: 图解:此时会弹出一个对话框,选择是就可以了,最终会看到: 阅读全文
posted @ 2013-11-02 23:44 Please Call me 小强 阅读(353) 评论(0) 推荐(0) 编辑
摘要: 图解: 阅读全文
posted @ 2013-11-02 23:09 Please Call me 小强 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 图解:重复第5,6,7,8,9步,最终得到: 阅读全文
posted @ 2013-11-02 22:42 Please Call me 小强 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 图解: 阅读全文
posted @ 2013-11-02 22:15 Please Call me 小强 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 点击【下一步】,进入第二关 阅读全文
posted @ 2013-11-02 21:53 Please Call me 小强 阅读(258) 评论(0) 推荐(0) 编辑
摘要: #include#include#include#includetypedef struct node{ int data; struct node *prior; struct node *next;}NODE,*PNODE,*LINKLIST;//初始化void init(LINKLIST *list){ *list = (PNODE)malloc(sizeof(NODE)); (*list)->prior=NULL;//前驱 (*list)->next=NULL;//后继}//插入 到第i个位置 i>=1void insert(LINKLIST lis... 阅读全文
posted @ 2013-11-02 21:36 Please Call me 小强 阅读(219) 评论(0) 推荐(0) 编辑
摘要: #include#include#include#include//双向循环链表的结构体定义typedef struct node{ int data; struct node *prior; struct node *next;}NODE,*PNODE,*LINKLIST;//初始化void init(LINKLIST *list){ *list = (PNODE)malloc(sizeof(NODE)); (*list)->next = *list; (*list)->prior = *list;}//添加void add(LINKLIST list,i... 阅读全文
posted @ 2013-11-02 21:35 Please Call me 小强 阅读(347) 评论(0) 推荐(0) 编辑
摘要: #include#include#include#includetypedef struct node{ int data; struct node *next;}NODE,*PNODE,*LINKLIST;//初始化void init(LINKLIST *list){ (*list) = (PNODE) malloc(sizeof(NODE)); (*list) ->next = *list;//头指针指向头结点}//添加数据,void add(LINKLIST list,int data){ PNODE p=list,q; //先将p移动到最后一个节点 ... 阅读全文
posted @ 2013-11-02 21:32 Please Call me 小强 阅读(439) 评论(0) 推荐(0) 编辑