链表

作者:追风剑情 发布于:2020-4-20 10:49 分类:C

示例:使用链表储存用户看过的电影

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <stdio.h>
  3. //提供malloc()原型
  4. #include <stdlib.h>
  5. //提供strcpy()原型
  6. #include <string.h>
  7. //提供CHAR_BIT的定义,CHAR_BIT表示每字节的位数
  8. #include <limits.h>
  9. //C99定义了bool、true、false
  10. #include <stdbool.h>
  11.  
  12. #define TSIZE 45 //储存片名的数组大小
  13.  
  14. struct film {
  15. char title[TSIZE]; //影片名称
  16. int rating; //评级(0~10)
  17. struct film * next; //指向链表中的下一个结构
  18. };
  19.  
  20. char* s_gets(char* st, int n);
  21.  
  22. int main(int argc, char* argv[])
  23. {
  24. struct film * head = NULL;
  25. struct film * prev = NULL, *current;
  26. char input[TSIZE];
  27.  
  28. /* 收集并储存信息 */
  29. puts("Enter first movie title:");
  30. while (s_gets(input, TSIZE) != NULL &&
  31. input[0] != '\0')
  32. {
  33. current = (struct film *)malloc(sizeof(struct film));
  34. if (current == NULL)
  35. {
  36. puts("Failed to allocate memory");
  37. continue;
  38. }
  39. if (head == NULL) //第1个结构
  40. head = current;
  41. else
  42. prev->next = current;
  43. current->next = NULL;
  44. strcpy(current->title, input);
  45. puts("Enter your rating <0-10>:");
  46. scanf("%d", &current->rating);
  47. while (getchar() != '\n')
  48. continue;
  49. puts("Enter next movie title (empty line to stop):");
  50. prev = current;
  51. }
  52. if (head == NULL)
  53. printf("No data entered.");
  54. else
  55. printf("Here is the movie list:\n");
  56. current = head;
  57.  
  58. /* 显示电影列表 */
  59. while (current != NULL)
  60. {
  61. printf("Movie: %s Rating: %d\n", current->title, current->rating);
  62. current = current->next;
  63. }
  64.  
  65. /* 完成任务,释放已分配的内存 */
  66. current = head;
  67. while (current != NULL)
  68. {
  69. head = current->next;
  70. free(current);
  71. current = head;
  72. }
  73. printf("Bye!\n");
  74.  
  75. system("pause");
  76. return 0;
  77. }
  78.  
  79. // 自己实现读取函数
  80. char* s_gets(char* st, int n)
  81. {
  82. char* ret_val;
  83. int i = 0;
  84. ret_val = fgets(st, n, stdin);
  85. if (ret_val) //即,ret_val != NULL
  86. {
  87. while (st[i] != '\n' && st[i] != '\0')
  88. i++;
  89. if (st[i] == '\n')
  90. st[i] = '\0';
  91. else
  92. while (getchar() != '\n')
  93. continue;
  94. }
  95. return ret_val;
  96. }

运行测试

11111.png

标签: C语言

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号