摘要: 图解:此时会弹出一个对话框,选择是就可以了,最终会看到: 阅读全文
posted @ 2013-11-02 23:44 浪浪辛 阅读(374) 评论(0) 推荐(0)
摘要: 图解: 阅读全文
posted @ 2013-11-02 23:09 浪浪辛 阅读(178) 评论(0) 推荐(0)
摘要: 图解:重复第5,6,7,8,9步,最终得到: 阅读全文
posted @ 2013-11-02 22:42 浪浪辛 阅读(240) 评论(0) 推荐(0)
摘要: 图解: 阅读全文
posted @ 2013-11-02 22:15 浪浪辛 阅读(254) 评论(0) 推荐(0)
摘要: 点击【下一步】,进入第二关 阅读全文
posted @ 2013-11-02 21:53 浪浪辛 阅读(268) 评论(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 浪浪辛 阅读(224) 评论(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 浪浪辛 阅读(358) 评论(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 浪浪辛 阅读(447) 评论(0) 推荐(0)