• 数据结构——基于顺序表实现通讯录


    一、. 基于动态顺序表实现通讯录

    1.1  功能要求

    1)⾄少能够存储100个⼈的通讯信息

    2)能够保存⽤⼾信息:名字、性别、年龄、电话、地址等
    3)增加联系⼈信息
    4)删除指定联系⼈
    5)查找制定联系⼈
    6)修改指定联系⼈
    7)显⽰联系⼈信息

    1.2   思路分析

    我们之前创建的顺序表可以实现连续存储数据(类型可以为整型、字符等),但无论是哪种类型,存储信息都比较单一,但是通讯录存储信息比较多,有联系人姓名、性别、年龄等,所以我们把一个联系人的所有信息作为一个整体存储到顺序表,原来我们写的是整型作为数据存储每个数组元素空间,现在转化通讯录,把一个人的所有信息打包变为结构体然后存储到数组元素元素的空间,然后基于顺序表实现通讯录功能。

    1.3 通讯录的实现

    因为我们是基于顺序表实现通讯录,先将顺序表写好

    1.3.1 顺序表

    1.3.1.1  SeqList.h
    1. #define _CRT_SECURE_NO_WARNINGS
    2. #include
    3. //#include"Contact.h"
    4. #define NAME_MAX 100
    5. #define SEX_MAX 10
    6. #define TEL_MAX 15
    7. #define ADDR_AMX 20
    8. struct ContactInfo
    9. {
    10. char name[NAME_MAX];
    11. char sex[SEX_MAX];
    12. int age;
    13. char tel[TEL_MAX];
    14. char addr[ADDR_AMX];
    15. };
    16. typedef struct ContactInfo SLDateType;
    17. typedef struct SeqList
    18. {
    19. SLDateType* a;
    20. int size;//空间有效数据
    21. int capacity;//空间大小
    22. }SL;
    23. //初始化和销毁
    24. void SLInit(SL* ps);
    25. void SLDestory(SL* ps);
    26. //尾插和头插
    27. void SLPushBack(SL* ps, SLDateType x);
    28. void SLPushFront(SL* ps, SLDateType x);
    29. //void SLPrint(SL* ps);
    30. //头删和尾删
    31. void SLPopBack(SL* ps);
    32. void SLPopFront(SL* ps);
    33. //在指定位置之前插入
    34. void SLInsert(SL* ps, int pos, SLDateType x);
    35. //删除指定位置
    36. void SLDel(SL* ps, int pos);

    注:这里值得注意的是我们将通讯信息结构体定义在SeqList.h中,然后重命名,后面的顺序表结构也是这样,那为什么不把通讯信息结构体定义在Contact.h,然后再SeqList.h中包含Contact.h,对typedef struct ContactInfo  SLDateType

    这样看似没问题,实际会造成重命名的问题,所以我们字书时要规范。

    输出结果:

    1.3.1.2  SeqList.c
    1. #define _CRT_SECURE_NO_WARNINGS
    2. #include "SeqList.h"
    3. #include
    4. #include
    5. #include
    6. void SLInit(SL* ps)
    7. {
    8. ps->a = NULL;
    9. ps->size = ps->capacity = 0;
    10. }
    11. void SLDestory(SL* ps)
    12. {
    13. if (ps->a)
    14. free(ps->a);
    15. ps->a = NULL;
    16. ps->size = ps->capacity = 0;
    17. }
    18. int SLCheckCapacity(SL* ps)
    19. {
    20. assert(ps);
    21. int newcapacity = ps->capacity == 0 ? 4 : ps->capacity * 2;
    22. if (ps->size == ps->capacity)//进行扩容
    23. {
    24. SLDateType* ret = (SLDateType*)realloc(ps->a, newcapacity * sizeof(SLDateType));
    25. if (ret == NULL)
    26. {
    27. perror("realloc fail:");
    28. return 1;
    29. }
    30. ps->a = ret;
    31. ps->capacity = newcapacity;
    32. }
    33. }
    34. void SLPushBack(SL* ps, SLDateType x)//1.若空间足够,进行插入 2.若空间不够,进行扩容(以1.5或2倍原来大小进行扩容)
    35. {
    36. assert(ps);
    37. SLCheckCapacity(ps);
    38. ps->a[ps->size] = x;
    39. ps->size++;
    40. }
    41. //void SLPrint(SL* ps)
    42. //{
    43. // assert(ps);
    44. // for (size_t i = 0; i < ps->size; i++)
    45. // {
    46. // printf("%d ", ps->a[i]);
    47. // }
    48. // printf("\n");
    49. //}
    50. void SLPushFront(SL* ps, SLDateType x)
    51. {
    52. assert(ps);
    53. SLCheckCapacity(ps);
    54. for (size_t i = ps->size; i > 0; i--)
    55. {
    56. ps->a[i] = ps->a[i-1];
    57. }
    58. ps->a[0] = x;
    59. ps->size++;
    60. }
    61. bool SLIsEmpty(SL * ps)//若返回值为假,则有数据,反之,则无
    62. {
    63. assert(ps);
    64. return ps->size == 0;
    65. }
    66. void SLPopBack(SL* ps)
    67. {
    68. assert(ps);
    69. //还需要判断是否有数据
    70. assert(!SLIsEmpty(ps));
    71. ps->size--;
    72. }
    73. void SLPopFront(SL* ps)
    74. {
    75. assert(ps);
    76. //还需要判断是否有数据
    77. assert(!SLIsEmpty(ps));
    78. for (size_t i = 0; i < ps->size-1; i++)
    79. {
    80. ps->a[i] = ps->a[i + 1];
    81. }
    82. ps->size--;
    83. }
    84. // 在指定位置之前插入
    85. void SLInsert(SL* ps, int pos, SLDateType x)
    86. {
    87. assert(ps);
    88. SLCheckCapacity(ps);
    89. //防止越界访问
    90. assert(pos>= 0 && pos<= ps->size);//端点位置为头插和尾插
    91. for (size_t i = ps->size; i >pos; i--)
    92. {
    93. ps->a[i] = ps->a[i - 1];
    94. }
    95. ps->a[pos] = x;
    96. ps->size++;
    97. }
    98. //删除指定位置
    99. void SLDel(SL* ps, int pos)
    100. {
    101. assert(ps);
    102. assert(!SLIsEmpty(ps));
    103. assert(pos>= 0 && pos< ps->size);//端点位置为头删和尾删
    104. for (size_t i = pos; i < ps->size-1; i++)
    105. {
    106. ps->a[i] = ps->a[i + 1];
    107. }
    108. ps->size--;
    109. }

    1.3.2  通讯录的初始化+销毁

    1.3.2.1 Contact.h
    1. #define _CRT_SECURE_NO_WARNINGS
    2. typedef struct ContactInfo CInfo;
    3. typedef struct SeqList Contact;//将顺序表重命名为通讯录(这里只是声明,无需包含Seqlist.h)
    4. //通讯录的初始化和销毁
    5. void ContactInit(Contact* con);
    6. void ContactDestroy(Contact* con);

    注:这里没有包含SeqList.h,为什么可以重定义结构体和顺序表呢?

    因为这里我们只是声明,没有使用,当在text.c使用时,它就会将Contact.h的CInfo和Contact

    展开。

     1.3.2.2 Contact.c
    1. #define _CRT_SECURE_NO_WARNINGS
    2. #include"Contact.h"
    3. #include"SeqList.h"
    4. #include
    5. #include
    6. #include
    7. void ContactInit(Contact* con)
    8. {
    9. SLInit(con);
    10. }
    11. void ContactDestroy(Contact* con)
    12. {
    13. SLDestory(con);
    14. }

    这里直接借用顺序表实现

    1.3.3   通讯录的添加+删除

    1.3.3.1 Contact.h
    1. //通讯录的初始化和销毁
    2. void ContactInit(Contact* con);
    3. void ContactDestroy(Contact* con);
    1.3.3.2 Contact.c
    1. void ContactAdd(Contact* con)
    2. {
    3. assert(con);
    4. CInfo info;
    5. printf("请输入姓名:\n");
    6. scanf("%s", info.name);
    7. printf("请输入性别:\n");
    8. scanf("%s", info.sex);
    9. printf("请输入年龄:\n");
    10. scanf("%d", &info.age);
    11. printf("请输入电话号码:\n");
    12. scanf("%s", info.tel);
    13. printf("请输入地址:\n");
    14. scanf("%s", info.addr);
    15. //将数据进行尾插
    16. SLPushBack(con,info);
    17. }
    18. int FindByName(Contact* con,char name[])
    19. {
    20. for (int i = 0; i < con->size; i++)
    21. {
    22. if (strcmp(con->a[i].name, name)==0)
    23. {
    24. return i;
    25. }
    26. }
    27. return -1;
    28. }
    29. void ContactDel(Contact* con)
    30. {
    31. assert(con);
    32. char name[NAME_MAX];
    33. printf("需要删除的姓名:\n");
    34. scanf("%s", name);
    35. //先查找该信息位置
    36. int ret=FindByName(con,name);
    37. if (ret < 0)
    38. {
    39. printf("没找到该联系人\n");
    40. return 1;
    41. }
    42. SLDel(con, ret);//删除指定位置
    43. }

    注: info.name这个是数组名,所以不用取地址

    1.3.4  查看通讯录 

    1.3.4.1 Contact.h
    1. //查看通讯录
    2. void ContactShow(Contact* con);
    1.3.4.2  Contact.c
    1. void ContactShow(Contact* con)
    2. {
    3. assert(con);
    4. assert(con->a);
    5. printf("%-4s%-4s%-4s%-4s%-4s\n", "姓名", "性别", "年龄", "电话", "住址");
    6. for (int i = 0; i < con->size;i++)
    7. {
    8. printf("%-4s %-4s %-4d%-4s%-4s\n",
    9. con->a[i].name, con->a[i].sex, con->a[i].age, con->a[i].tel, con->a[i].addr);
    10. }
    11. }

    1.3.5  修改通讯录

    1.3.5.1 Contact.h
    1. //修改通讯录
    2. void ContactChange(Contact* con);
    1.3.5.2 Contact.c
    1. void ContactChange(Contact* con)
    2. {
    3. assert(con);
    4. char name[NAME_MAX];
    5. printf("需要修改的姓名:\n");
    6. scanf("%s",name);
    7. //先查找该信息位置
    8. int ret = FindByName(con, name);
    9. if (ret < 0)
    10. {
    11. printf("没找到该联系人\n");
    12. return 1;
    13. }
    14. printf("请输入修改的姓名:\n");
    15. scanf("%s",con->a[ret].name);
    16. printf("请输入修改的性别:\n");
    17. scanf("%s", con->a[ret].sex);
    18. printf("请输入修改的年龄:\n");
    19. scanf("%d", &con->a[ret].age);
    20. printf("请输入修改的电话号码:\n");
    21. scanf("%s", con->a[ret].tel);
    22. printf("请输入修改的地址:\n");
    23. scanf("%s", con->a[ret].addr);
    24. printf("修改成功!\n");
    25. }

    1.3.6 查找指定联系人 

    1.3.6.1 Contact.h
    1. //查找指定联系人
    2. void ContactFind(Contact* con);
    1.3.6.2 Contact.c
    1. void ContactFind(Contact* con)
    2. {
    3. assert(con);
    4. char name[NAME_MAX];
    5. printf("需要查找的姓名:\n");
    6. scanf("%s", name);
    7. //先查找该信息位置
    8. int ret = FindByName(con, name);
    9. if (ret < 0)
    10. {
    11. printf("没找到该联系人\n");
    12. return 1;
    13. }
    14. printf("%-4s%-4s%-4d%-4s%-4s\n",
    15. con->a[ret].name, con->a[ret].sex, con->a[ret].age, con->a[ret].tel, con->a[ret].addr);
    16. }

    1.3.7 菜单界面

    为方便调用通讯录的各种功能,我们做一个菜单界面

    1.3.7 .1 text.c
    1. void menu()
    2. {
    3. printf("****************** 通讯录 **********************\n");
    4. printf("*** 1.添加联系人 2.删除联系人 ******\n");
    5. printf("*** 3.修改通讯录 4.查看指定联系人 ******\n");
    6. printf("*** 5.查看通讯录 0.退出通讯录 ******\n");
    7. printf("*****************************************************\n");
    8. }
    9. int main()
    10. {
    11. int n = -1;
    12. Contact con;
    13. ContactInit(&con);
    14. do
    15. {
    16. menu();
    17. printf("请输入你的选择;\n");
    18. scanf("%d", &n);
    19. switch (n)
    20. {
    21. case 1:
    22. ContactAdd(&con);
    23. break;
    24. case 2:
    25. ContactDel(&con);
    26. break;
    27. case 3:
    28. ContactChange(&con);
    29. break;
    30. case 4:
    31. ContactFind(&con);
    32. break;
    33. case 5:
    34. ContactShow(&con);
    35. break;
    36. case 0:
    37. break;
    38. default:
    39. printf("输入错误,请从新输入!\n");
    40. break;
    41. }
    42. }while (n);
    43. ContactDestroy(&con);
    44. return 0;
    45. }

    1.3.8  测试界面

  • 相关阅读:
    C++学习笔记
    我为什么要使用GPT????
    Go语言的IO库那么多纠结该如何选择
    对齐管理后台中的账户体系的四种方法
    自动化测试练手项目推荐
    5-爬虫-打码平台、打码平台自动登录打码平台、selenium爬取京东商品信息、scrapy介绍安装、scrapy目录结构
    卫星遥感·格物致知丨卫星遥感的力量——自然灾害监测的太空之眼—洪涝灾害监测
    kettle经验篇:MongoDB-delete插件问题
    C++面试 -操作系统-架构能力:系统网络性能评估与优化
    Elasticsearch:多语言语义搜索
  • 原文地址:https://blog.csdn.net/zhoubancheng/article/details/134208801