当前位置:   article > 正文

21、数据结构/单向循环链表练习20240203

21、数据结构/单向循环链表练习20240203

一、请编程实现单向循环链表的头插,头删、尾插、尾删。

二、请编程实现单向循环链表约瑟夫环

约瑟夫环:用循环链表编程实现约瑟夫问题

n个人围成一圈,从某人开始报数1, 2, …, m,数到m的人出圈,然后从出圈的下一个人(m+1)开始重复此过程,

直到 全部人出圈,于是得到一个出圈人员的新序列

如当n=8,m=4时,若从第一个位置数起,则所得到的新的序列 为4, 8, 5, 2, 1, 3, 7, 6。

三、请编程实现单向循环链表的排序。

(以上均为单向循环链表,故在一个文件内完成)

代码:

  1. #include<stdlib.h>
  2. #include<string.h>
  3. #include<stdio.h>
  4. typedef struct node //定义链表节点结构体:数据域、指针域
  5. {
  6. int data;
  7. struct node *next;
  8. }*linklist;
  9. linklist create_node()//创建新节点并初始化,返回节点地址
  10. {
  11. linklist s=(linklist)malloc(sizeof(struct node));
  12. if(NULL==s)
  13. return NULL;
  14. s->data=0;
  15. s->next=s;
  16. return s;
  17. }
  18. linklist insert_head(linklist head,int element)
  19. {
  20. linklist s=create_node();
  21. if(NULL==s)
  22. {
  23. puts("fail");
  24. return NULL;
  25. }
  26. s->data=element;
  27. if(NULL==head)
  28. {
  29. head=s;
  30. return head;
  31. }
  32. linklist p=head;
  33. while(p->next!=head)
  34. p=p->next;
  35. s->next=head;
  36. head=s;
  37. p->next=head;
  38. return head;
  39. }
  40. linklist insert_rear(linklist head,int element)
  41. {
  42. linklist s=create_node();
  43. if(NULL==s)
  44. {
  45. puts("fail");
  46. return NULL;
  47. }
  48. s->data=element;
  49. if(NULL==head)
  50. {
  51. head=s;
  52. return head;
  53. }
  54. linklist p=head;
  55. while(p->next!=head)
  56. p=p->next;
  57. p->next=s;
  58. s->next=head;
  59. return head;
  60. }
  61. void output(linklist head)
  62. {
  63. linklist p=head;
  64. while(p->next!=head)
  65. {
  66. printf("%d ",p->data);
  67. p=p->next;
  68. }
  69. printf("%d",p->data);
  70. puts("");
  71. }
  72. linklist delete_head(linklist head)
  73. {
  74. if(NULL==head)
  75. {
  76. puts("empty");
  77. return head;
  78. }
  79. if(head==head->next)
  80. {
  81. free(head);
  82. return NULL;
  83. }
  84. linklist del=head;
  85. linklist p=head;
  86. while(p->next!=head)
  87. p=p->next;
  88. head=head->next;
  89. p->next=head;
  90. free(del);del=NULL;
  91. return head;
  92. }
  93. linklist delete_rear(linklist head)
  94. {
  95. if(NULL==head)
  96. {
  97. puts("empty");
  98. return head;
  99. }
  100. if(head==head->next)
  101. {
  102. free(head);
  103. return NULL;
  104. }
  105. linklist p=head;
  106. while(p->next->next!=head)
  107. p=p->next;
  108. linklist del=p->next;
  109. p->next=head;
  110. free(del);del=NULL;
  111. return head;
  112. }
  113. void joseph_ring(linklist head,int len,int m)
  114. {
  115. linklist p=head;
  116. for(int i=1;i<=len;i++)
  117. {
  118. for(int j=1;j<=m-2;j++)
  119. {
  120. p=p->next;
  121. }
  122. linklist del=p->next;
  123. printf("%d ",del->data);
  124. p->next=del->next;
  125. free(del);
  126. p=p->next;
  127. }
  128. puts("");
  129. }
  130. void simple_sort(linklist head)
  131. {
  132. linklist p=head;
  133. for(p;p->next!=head;p=p->next)
  134. {
  135. linklist min=p;
  136. for(linklist q=p->next;q!=head;q=q->next)
  137. {
  138. if(min->data > q->data)
  139. min=q;
  140. }
  141. if(min!=p)
  142. {
  143. int t=min->data;
  144. min->data=p->data;
  145. p->data=t;
  146. }
  147. }
  148. }
  149. int main(int argc, const char *argv[])
  150. {
  151. linklist head=NULL;//定义单向循环链表头指针并初始化
  152. int len;//根据终端输入的值确定单向循环链表的长度
  153. printf("please enter the length of the linklist:");
  154. scanf("%d",&len);
  155. int element;
  156. for(int i=0;i<len;i++)//循环输入数值,头插或尾插创建循环链表
  157. {
  158. printf("%d element:",i+1);
  159. scanf("%d",&element);
  160. // head=insert_head(head,element);//头插
  161. head=insert_rear(head,element);//尾插
  162. }
  163. output(head);//遍历
  164. simple_sort(head);//排序
  165. output(head);
  166. /*//代码实现约瑟夫环
  167. for(int i=1;i<=len;i++)
  168. {
  169. head=insert_rear(head,i);//根据长度循环尾插输入约瑟夫环内数值;
  170. }
  171. output(head);//遍历
  172. int m;
  173. printf("please enter the m of the joseph ring:" );
  174. scanf("%d",&m);
  175. joseph_ring(head,len,m);
  176. head=delete_head(head);//头删
  177. head=delete_head(head);
  178. output(head);
  179. head=delete_rear(head);//尾删
  180. output(head);
  181. */
  182. return 0;
  183. }

运行:

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/代码吟游诗人/article/detail/61296
推荐阅读
相关标签
  

闽ICP备14008679号