链表问题
HappyWang_
这个作者很懒,什么都没留下…
展开
-
约瑟夫环问题
#include#includestruct node{ int data; struct node *next;};struct node *creat(int n){ struct node *head,*p,*tail; p=(struct node*)malloc(sizeof(struct node)); p->d原创 2016-07-27 15:47:40 · 173 阅读 · 0 评论 -
链表的拆分
#include#includestruct node{ int data; struct node *next;};int m,b;struct node *creat(int n){ struct node *head,*p; head=(struct node*)malloc(sizeof(struct node));原创 2016-07-27 14:36:47 · 342 阅读 · 0 评论 -
有序链表的归并
#include#includestruct node{ int data; struct node *next;};struct node *creat(int n){ struct node *head,*p; struct node *tail; head=(struct node*)malloc(sizeof(str原创 2016-07-27 09:49:41 · 242 阅读 · 0 评论 -
重复元素的删除问题
题目 代码:#include#includestruct node{ int data; struct node *next;};struct node *creat(int n){ struct node *head,*p; head=(struct node*)malloc(sizeof(struct node));原创 2016-07-26 20:26:10 · 182 阅读 · 0 评论