当前位置:   article > 正文

数据结构 - 顺序表实现通讯录

数据结构 - 顺序表实现通讯录

test.c文件

  1. #define _CRT_SECURE_NO_WARNINGS 1
  2. #include "Contact.h"
  3. int main()
  4. {
  5. Con myContacts;
  6. ConInit(&myContacts);
  7. int choice;
  8. int index;
  9. char targetName[100];
  10. PerInfo contact; // 创建一个新的联系人信息实例
  11. while (1)
  12. {
  13. printf("\n--- 通讯录管理系统 ---\n");
  14. printf("1. 添加联系人到末尾\n");
  15. printf("2. 添加联系人到开头\n");
  16. printf("3. 删除最后一个联系人\n");
  17. printf("4. 删除第一个联系人\n");
  18. printf("5. 显示所有联系人信息\n");
  19. printf("6. 保存通讯录到文件\n");
  20. printf("7. 从文件加载通讯录\n");
  21. printf("8. 修改指定联系人的信息\n");
  22. printf("9. 查找指定联系人的信息\n");
  23. printf("10. 退出\n");
  24. printf("请选择一个操作:");
  25. int result = scanf("%d", &choice);
  26. if (result == 1)
  27. {
  28. switch (choice)
  29. {
  30. case 1:
  31. {
  32. PerInfo newContact;
  33. printf("输入姓名:");
  34. scanf("%s", newContact.name);
  35. printf("输入性别:");
  36. scanf("%s", newContact.gender);
  37. printf("输入年龄:");
  38. scanf("%d", &newContact.age);
  39. printf("输入电话:");
  40. scanf("%s", newContact.telephone);
  41. printf("输入地址:");
  42. scanf("%s", newContact.address);
  43. ConPushBack(&myContacts, newContact);
  44. break;
  45. }
  46. case 2:
  47. {
  48. PerInfo newContact;
  49. printf("输入姓名:");
  50. scanf("%s", newContact.name);
  51. printf("输入性别:");
  52. scanf("%s", newContact.gender);
  53. printf("输入年龄:");
  54. scanf("%d", &newContact.age);
  55. printf("输入电话:");
  56. scanf("%s", newContact.telephone);
  57. printf("输入地址:");
  58. scanf("%s", newContact.address);
  59. ConPushFront(&myContacts, newContact);
  60. break;
  61. }
  62. case 3:
  63. ConPopBack(&myContacts);
  64. break;
  65. case 4:
  66. ConPopFront(&myContacts);
  67. break;
  68. case 5:
  69. ConDisplayAll(&myContacts);
  70. break;
  71. case 6:
  72. ConSave(&myContacts, "contacts.csv");
  73. break;
  74. case 7:
  75. ConLoad(&myContacts, "contacts.csv");
  76. break;
  77. case 8:
  78. printf("请输入要修改的联系人索引:");
  79. scanf("%d", &index);
  80. // 此处你需要一种方法来获取新的联系人信息
  81. // 可以是一个函数,或者直接在这里收集
  82. printf("输入新的姓名:");
  83. scanf("%s", contact.name);
  84. printf("输入新的性别:");
  85. scanf("%s", contact.gender);
  86. printf("输入新的年龄:");
  87. scanf("%d", &contact.age);
  88. printf("输入新的电话:");
  89. scanf("%s", contact.telephone);
  90. printf("输入新的地址:");
  91. scanf("%s", contact.address);
  92. // 在修改之前确保索引是有效的
  93. if (index >= 0 && index < myContacts.size) {
  94. ConModify(&myContacts, index, contact);
  95. }
  96. else {
  97. printf("无效的索引。\n");
  98. }
  99. break;
  100. case 9:
  101. printf("请输入要查找的联系人姓名:");
  102. scanf("%s", targetName);
  103. ConSearch(&myContacts, targetName);
  104. break;
  105. case 10:
  106. ConDestroy(&myContacts);
  107. printf("退出程序。\n");
  108. return 0;
  109. default:
  110. printf("无效选项,请重新选择。\n");
  111. }
  112. }
  113. else
  114. {
  115. // 读取失败,清理输入流
  116. while (getchar() != '\n'); // 读取并丢弃直到一个新行
  117. printf("输入无效,请输入一个数字。\n");
  118. }
  119. }
  120. return 0;
  121. }

contact.c文件

  1. #define _CRT_SECURE_NO_WARNINGS 1
  2. #include "Contact.h"
  3. //通讯录的初始化
  4. void ConInit(Con* ps)
  5. {
  6. assert(ps);
  7. ps->arr = NULL;
  8. ps->size = 0;
  9. ps->capacity = 0;
  10. }
  11. //通讯录的扩容
  12. void ConCheckcapacity(Con* ps)
  13. {
  14. if (ps->size == ps->capacity)
  15. {
  16. assert(ps);
  17. int newcapacity = ps->capacity == 0 ? INIT_CAPACITY : ps->capacity * 2;
  18. PerInfo* temp = (PerInfo*)realloc(ps->arr, newcapacity * sizeof(PerInfo));
  19. if (temp == NULL)
  20. {
  21. perror("realloc:");
  22. exit(1);
  23. }
  24. else
  25. {
  26. ps->arr = temp;
  27. ps->capacity = newcapacity;
  28. }
  29. }
  30. }
  31. //通讯录的销毁
  32. void ConDestroy(Con* ps)
  33. {
  34. assert(ps);
  35. free(ps->arr);
  36. ps->arr = NULL;
  37. ps->capacity = 0;
  38. ps->size = 0;
  39. }
  40. //添加联系人信息到第一个位置
  41. void ConPushFront(Con* ps, PerInfo newContact)
  42. {
  43. assert(ps);
  44. ConCheckcapacity(ps);
  45. for (int i = ps->size - 1;i >= 0;i--)
  46. {
  47. ps->arr[i + 1] = ps->arr[i];
  48. }
  49. ps->arr[0] = newContact;
  50. ps->size++;
  51. }
  52. //添加联系人信息到最后一个位置
  53. void ConPushBack(Con* ps, PerInfo newContact)
  54. {
  55. assert(ps);
  56. ConCheckcapacity(ps);
  57. ps->arr[ps->size] = newContact;
  58. ps->size++;
  59. }
  60. //删除第一个联系人信息
  61. void ConPopFront(Con* ps)
  62. {
  63. assert(ps);
  64. if (ps->size == 0)
  65. {
  66. printf("提示:这个联系人列表是空的,没有东西可以删除\n");
  67. return;
  68. }
  69. else
  70. {
  71. for (int i = 0;i < ps->size - 1; i++)
  72. {
  73. ps->arr[i] = ps->arr[i + 1];
  74. }
  75. ps->size--;
  76. }
  77. printf("提示:第一个联系人删除成功\n");
  78. }
  79. //删除最后一个联系人信息
  80. void ConPopBack(Con* ps)
  81. {
  82. assert(ps); // 确保通讯录指针不为空
  83. if (ps->size == 0) {
  84. printf("提示:通讯录为空,没有可以删除的联系人\n");
  85. return;
  86. }
  87. ps->size--; // 减少通讯录的大小,移除最后一个元素
  88. printf("提示:最后一个联系人已成功删除\n");
  89. }
  90. //修改指定联系人的信息
  91. void ConModify(Con* ps, int index, PerInfo updatedContact)
  92. {
  93. assert(ps);
  94. if (index < 0 || index >= ps->size) {
  95. printf("输入的索引无效,无法修改联系人信息。\n");
  96. return;
  97. }
  98. // 更新指定索引处的联系人信息
  99. ps->arr[index] = updatedContact;
  100. //将新的联系人信息 updatedContact 赋值给 arr 数组的第 index 个位置。这个操作实质上是一个结构体赋值操作,它将 updatedContact 结构体的所有成员(包括姓名、性别、年龄、电话号码和地址等)复制到 arr[index] 所指向的结构体中。这意味着原来存储在该索引位置的联系人信息会被完全替换为新提供的信息。
  101. printf("联系人信息已成功更新:%s %s %d %s %s\n", updatedContact.name, updatedContact.gender, updatedContact.age, updatedContact.telephone, updatedContact.address);
  102. }
  103. //查找指定联系人的信息
  104. void ConSearch(Con* ps, const char* targetName)
  105. {
  106. assert(ps); // 确保通讯录指针不为空
  107. int found = 0; // 用于记录是否找到联系人
  108. for (int i = 0; i < ps->size; i++) {
  109. if (strcmp(ps->arr[i].name, targetName) == 0) {
  110. printf("找到联系人: 姓名:%s, 性别:%s, 年龄:%d, 电话:%s, 地址:%s\n",
  111. ps->arr[i].name, ps->arr[i].gender, ps->arr[i].age,
  112. ps->arr[i].telephone, ps->arr[i].address);
  113. found = 1; // 标记为找到
  114. }
  115. }
  116. if (!found) {
  117. printf("未找到联系人:%s\n", targetName);
  118. }
  119. }
  120. // 打印所有联系人信息
  121. void ConDisplayAll(Con * ps)
  122. {
  123. assert(ps); // 确保通讯录指针不为空
  124. if (ps->size == 0) {
  125. printf("通讯录为空,没有联系人信息可显示。\n");
  126. return;
  127. }
  128. printf("通讯录包含以下联系人:\n");
  129. for (int i = 0; i < ps->size; i++) {
  130. printf("%d. 姓名:%s, 性别:%s, 年龄:%d, 电话:%s, 地址:%s\n",
  131. i + 1,
  132. ps->arr[i].name,
  133. ps->arr[i].gender,
  134. ps->arr[i].age,
  135. ps->arr[i].telephone,
  136. ps->arr[i].address);
  137. }
  138. }
  139. // 保存所有联系人信息到文件
  140. void ConSave(Con* ps, const char* filename)
  141. {
  142. assert(ps); // 确保通讯录指针不为空
  143. FILE* file = fopen(filename, "w"); // 打开文件用于写入
  144. if (file == NULL) {
  145. perror("无法打开文件");
  146. return;
  147. }
  148. // 写入通讯录大小,可用于加载数据
  149. fprintf(file, "%d\n", ps->size);
  150. for (int i = 0; i < ps->size; i++) {
  151. fprintf(file, "%s,%s,%d,%s,%s\n",
  152. ps->arr[i].name,
  153. ps->arr[i].gender,
  154. ps->arr[i].age,
  155. ps->arr[i].telephone,
  156. ps->arr[i].address);
  157. }
  158. fclose(file); // 关闭文件
  159. printf("通讯录已成功保存到文件:%s\n", filename);
  160. }
  161. // 加载通讯录数据
  162. void ConLoad(Con* ps, const char* filename)
  163. {
  164. assert(ps);
  165. FILE* file = fopen(filename, "r");
  166. if (file == NULL) {
  167. perror("无法打开文件");
  168. return;
  169. }
  170. int size;
  171. fscanf(file, "%d\n", &size); // 读取通讯录大小
  172. for (int i = 0; i < size; i++) {
  173. PerInfo info;
  174. fscanf(file, "%[^,],%[^,],%d,%[^,],%[^\n]\n",
  175. info.name,
  176. info.gender,
  177. &info.age,
  178. info.telephone,
  179. info.address);
  180. ConPushBack(ps, info); // 将读取的信息添加到通讯录
  181. }
  182. fclose(file);
  183. printf("通讯录数据已从文件:%s 加载完成\n", filename);
  184. }

contact.h文件

  1. #pragma once
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <string.h>
  5. #include <assert.h>
  6. #define NAME_MAX 100
  7. #define SEX_MAX 4
  8. #define TEL_MAX 12
  9. #define ADDR_MAX 100
  10. #define INIT_CAPACITY 4
  11. typedef struct PersonInfo {
  12. char name[NAME_MAX];
  13. char gender[SEX_MAX];
  14. int age;
  15. char telephone[TEL_MAX];
  16. char address[ADDR_MAX];
  17. } PerInfo;
  18. typedef struct Contact {
  19. PerInfo* arr;
  20. int size;
  21. int capacity;
  22. } Con;
  23. // Function declarations
  24. void ConInit(Con* ps);
  25. void ConCheckcapacity(Con* ps);
  26. void ConDestory(Con* ps);
  27. void ConPushFront(Con* ps, PerInfo newContact);
  28. void ConPushBack(Con* ps, PerInfo newContact);
  29. void ConPopFront(Con* ps);
  30. void ConPopBack(Con* ps);
  31. void ConModify(Con* ps, int index, PerInfo updatedContact);
  32. void ConSearch(Con* ps, const char* targetName);
  33. void ConDisplayAll(Con* ps);
  34. void ConSave(Con* ps, const char* filename);
  35. void ConLoad(Con* ps, const char* filename);

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

闽ICP备14008679号