当前位置:   article > 正文

使用哈希表(散列表)+顺序二叉树实现电话簿系统(手把手讲解)_利用哈希表制作通讯录

利用哈希表制作通讯录

介绍相关概念

哈希表:

也称哈希映射(hash map)或者散列表,是根据关键码值(key value)而直接进行访问的数据结构。它通过计算一个散列函数,将关键码值映射到表中一个位置,以实现直接访问存储在该位置的数据,大大提高查找的效率。

顺序二叉树

顺序二叉树(Binary Search Tree,BST)是一种特殊的二叉树数据结构。它具有以下特征:

  • 顺序二叉树是一个二叉树,每个节点最多有两个子节点(左子节点和右子节点)。

  • 若任意节点的左子节点不为空,则左子节点的值必须小于该节点的值;

  • 若任意节点的右子节点不为空,则右子节点的值必须大于该节点的值;

  • 任意节点的左、右子树也必须是顺序二叉树。

也就是说,顺序二叉树的任意节点的值都大于其左子树上所有节点的值,小于其右子树上所有节点的值。查找过程就相当于二分查找

链表

是一种线性存储结构

实现思路如下图

实现大体思路

存储结构

对于普通用户,如果用户过多我们可以使用哈希表+顺序二叉树去查找 存储结构如下

 思路讲解

1.对于初始化

        *要考虑初始化的时候要不要顺便读取文件内容然后打印

2.增删改查

        *对于增加用户,因为我们使用的是hash表,所以需要主键,就要考虑主键重复问题(我使用名字             当主键)

注意:我们在输入字符或者字符串时候呢肯定会出现多输入字符比如空格或者回车或者多输入了需对字符,所以我们要是使用getchar的话只能解决前两种问题,无法解决第三中问题,所以我提供一种思路,我们可以声明一个 字符串来当做缓冲区,把所有多余的字符读取进去,然后最后使用 memset 释放掉

eg

  1. //充当缓冲区
  2. char buffer[1000];
  3. printf("请输入你想删除的联系人姓名:\n");
  4. scanf("%10s", name);
  5. gets_s(buffer);
  6. memset(buffer, 0, sizeof(buffer));
  7. // 0代表从第一个位置开始删除,sizeof(buffer)代表删除到最后

这样呢就可以解决缓冲区的问题 

        *删除用户的话,因为我们有特别关心用户,所以呢,要保证删除掉普通用户的同时会删除特别关心用户,删除特别关心用户并不会影响普通用户 还有就是顺序二叉树的删除

        *修改用户就要保证在修改普通用户的同时又修改为特别关心用户的

        *查找就比较简单,但是查找还有在排重中使用,只需要注意没有用户时的查找处理.

3.打印信息

        1.在终端对用户打印

                注意二叉树的顺序打印,还有美化一下打印界面,比如带上索引

        2.向文件中打印存储的信息,要注意打印格式方便读取,比如每种信息使用'#'隔开

                注意小细节,因为姓名是关键字,所以我们存储特别关心用户时,我们可以只存储名字,打印时候只需要调用查找函数即可调用其他信息

 4.读取信息

        根据存储的格式去读取

5.实现注意

        头文件的使用,了解头文件的概念

        特别要注意删除时候,对于地址的传参,会造成指针异常

实现开始

一定要在一个工程文件里面!!!!!

头文件 来声明使用的头文件+存储结构+函数声明

  1. #ifndef AddressBookTools
  2. #define AddressBookTools
  3. #define MaxNum 27 //一共26个首字母
  4. const int INFOEMATIONNUMS = 3;
  5. const int MaxPhone = 20;
  6. #include<stdio.h>
  7. #include<stdlib.h>
  8. #include<string.h>
  9. /* 使用二叉排序树 + 哈希表创建通讯录*/
  10. typedef char keyName[11];//名字
  11. typedef char Number[12];//电话号码
  12. typedef char Sex;//性别
  13. /*人物信息*/
  14. typedef struct InforNode{
  15. keyName name;//名字
  16. Number num[MaxPhone];//电话号
  17. Sex sex;//性别
  18. /*......等等多个信息*/
  19. }Information;
  20. /*顺序二叉树的存储结构*/
  21. typedef struct BSTNode {
  22. Information information;
  23. struct BSTNode* lchild, * rchild;//左右孩子
  24. }BSTNode,*BSTree;
  25. /*哈希表结构*/
  26. typedef struct HashNode {
  27. BSTree T;
  28. }*HashTable,HashNode;
  29. /*存储特别关心*/
  30. typedef struct Node {
  31. Information information;
  32. struct Node* next;
  33. }Node,*List;
  34. //初始化功能
  35. //=====================================================
  36. //创建新的电话簿
  37. void CreatHT(HashTable &H);//创建一个Hash表并复制NULL
  38. //创建特别关心列表
  39. void CreatL(List& L);
  40. //=====================================================
  41. //辅助函数
  42. //=====================================================
  43. //哈希函数
  44. int Hash(keyName name);
  45. //计算名字字符大小之和
  46. int NameSum(keyName name);
  47. //判断两个关键字是否相同 相同返回 1 不同返回 0
  48. int equals(keyName name1, keyName name2);
  49. //=====================================================
  50. //插入信息功能 插入特别关心人
  51. //=====================================================
  52. //插入普通用户
  53. Information InputInformation();//输入信息并返回输入后的节点
  54. void InsertHT(HashTable &H);//在表里插入信息
  55. //哈希表中的排序二叉树
  56. void InsertBST(BSTree& T,Information E);
  57. //插入特别关心人
  58. void InsertLike(List& L, HashTable& H, keyName name);
  59. //=====================================================
  60. //打印信息
  61. //=====================================================
  62. //在终端打印普通用户信息
  63. void PrintHT(HashTable H,List L);
  64. void PrintTree(BSTree T);
  65. //在终端打印特别关心用户信息
  66. void PrintLike(List L);
  67. //在文件打印信息
  68. void PrintfLike(List L, FILE* fLike);
  69. void PrintFile(HashTable H,FILE* f);
  70. void PrintTreeF(BSTree T,FILE* f);
  71. //=====================================================
  72. //从文件中读取信息
  73. //=====================================================
  74. void ReadFile(FILE* f, FILE* fLike, HashTable& H, List& L);
  75. //=====================================================
  76. //删除某顶点
  77. //=====================================================
  78. //定位在哈希表的某个位置
  79. void DeleteHT(HashTable& H, keyName name);
  80. //删除二叉树的节点
  81. void DeleteBST(BSTree& T, keyName name);
  82. //删除链表节点
  83. void DeleteList(List& L, keyName name);
  84. //=====================================================
  85. //查找联系人 等修改联系人信息
  86. //=====================================================
  87. //查找指定联系人的节点
  88. BSTree Search(HashTable H, keyName name);
  89. //查找链表中指定联系人
  90. List SearchL(List L, keyName naem);
  91. //修改指定联系人节点的信息
  92. void Modify(HashTable& H,List &L, keyName name);
  93. //=====================================================
  94. //打印用户界面
  95. int OperateMenu();
  96. #endif // !AddressBookTools

第一个 .cpp文件用来实现头文件中函数

  1. #define _CRT_SECURE_NO_WARNINGS 1
  2. #include "AddressBookTools.h"
  3. /*创建功能*/
  4. void CreatHT(HashTable &H) { //创建初始化哈希表
  5. H = (HashNode*)malloc(sizeof(HashNode) * MaxNum);
  6. if (H == NULL) exit(-1);//申请失败退出程序
  7. for (int i = 0; i < MaxNum; ++i) {
  8. H[i].T = NULL;
  9. }
  10. }
  11. void CreatL(List& L) {
  12. L = (Node*)malloc(sizeof(Node));
  13. if (L == NULL) {
  14. printf("申请内存失败!\n");
  15. exit(-1);
  16. }
  17. L->next = NULL;
  18. L->information = {};
  19. }
  20. int Hash(keyName name) {
  21. if(name[0]>='a'&&name[0]<='z')
  22. return (name[0]-97) % (MaxNum-1);
  23. if (name[0] >='A' && name[0] <= 'Z')
  24. return (name[0] - 65) % (MaxNum-1);
  25. return 26;
  26. }
  27. /*关键字的每一个Ascll码之和作为权值*/
  28. int NameSum(keyName name) {
  29. int sum=0;
  30. for(int i=0;name[i]!='\0';++i){
  31. sum += name[i];
  32. }
  33. return sum;
  34. }
  35. int equals(keyName name1, keyName name2) {
  36. int count = 0;
  37. if (sizeof(name1) != sizeof(name2))return 0;
  38. while (name1[count] != '\0' || name2[count] != '\0') {
  39. if (name1[count] != name2[count])return 0;
  40. count++;
  41. }
  42. return 1;
  43. }
  44. /*插入功能*/
  45. //插入普通用户
  46. Information InputInformation() {
  47. //要对E进行初始化,要不然会产生地址访问冲突
  48. Information E = { {},{}, ' '
  49. };
  50. for (int i = 0; i < MaxPhone; ++i) {
  51. strcpy(E.num[i], " ");
  52. }
  53. //充当缓冲区
  54. char buffer[1000];
  55. printf("请输入联系人姓名\n");
  56. scanf("%10s", E.name);
  57. gets_s(buffer);
  58. printf("你要输入电话和姓名吗? -1 要,-0不要\n");
  59. int choice = 0;
  60. scanf("%d", &choice);
  61. gets_s(buffer);
  62. int nums = 0;
  63. switch (choice)
  64. {
  65. input :case 1:
  66. printf("你想输入多少个号码(最多十个)?\n");
  67. scanf("%d", &nums);
  68. if (nums > MaxPhone) {
  69. printf("数量过多!\n");
  70. goto input;
  71. }
  72. gets_s(buffer);
  73. for (int i = 0; i < nums; ++i) {
  74. printf("请输入联系人电话号(11个数字)\n");
  75. scanf("%11s", E.num[i]);
  76. gets_s(buffer);
  77. }
  78. printf("请输入联系人的性别(一个字母 M:男性,W:女性)\n");
  79. scanf("%c", &E.sex);
  80. gets_s(buffer);
  81. default:
  82. break;
  83. }
  84. //清理缓存区
  85. memset(buffer, 0, sizeof(buffer));
  86. return E;
  87. }
  88. void InsertHT(HashTable& H) {
  89. Information E = InputInformation();
  90. BSTree p = Search(H, E.name);
  91. if (p != NULL) {
  92. printf("名字与电话簿已存在!\n插入失败\n");
  93. return;
  94. }
  95. //调用哈希函数 获取存储的位置
  96. int index = Hash(E.name);
  97. //存入对应位置
  98. //如果该位置为空则T指向新节点
  99. InsertBST(H[index].T,E);
  100. printf("插入成功!\n");
  101. }
  102. void InsertBST(BSTree& T,Information E) {
  103. if (T == NULL) {
  104. BSTree node = (BSTNode*)malloc(sizeof(BSTNode));
  105. if (node == NULL)exit(0);
  106. node->information = E;
  107. node->lchild = NULL;
  108. node->rchild = NULL;
  109. T = node;
  110. }
  111. else {
  112. //把名字的字母和作为关键字计算权值大小
  113. int weightNew = NameSum(E.name);
  114. int weightOld = NameSum(T->information.name);
  115. if (weightNew <= weightOld) {
  116. InsertBST(T->lchild, E);
  117. }
  118. else if(weightNew>=weightOld){
  119. InsertBST(T->rchild, E);
  120. }
  121. }
  122. }
  123. //插入特别关心用户
  124. void InsertLike(List& L,HashTable &H,keyName name) {
  125. BSTree T = Search(H,name);
  126. if (T == NULL) {
  127. printf("没有该用户!\n");
  128. return;
  129. }
  130. if (SearchL(L, name) != NULL) {
  131. printf("该用户已存在!\n");
  132. return;
  133. }
  134. List nexttemp = (Node*)malloc(sizeof(Node));
  135. if (nexttemp == NULL) {
  136. printf("申请内存失败!\n");
  137. exit(-1);
  138. }
  139. List p = L;
  140. //遍历到最后
  141. while (p->next != NULL) {
  142. p = p->next;
  143. }
  144. nexttemp->information = T->information;
  145. p->next = nexttemp;
  146. nexttemp->next = NULL;
  147. }
  148. /*打印功能*/
  149. void PrintTree(BSTree T) {
  150. if (T == NULL) return;
  151. //中序遍历 从小到大遍历
  152. PrintTree(T->lchild);
  153. printf("||姓名:%s\t||",T->information.name);
  154. printf("电话:||");
  155. for (int i = 0; i<MaxPhone; ++i) {
  156. if(strcmp(T->information.num[i], " ") != 0)
  157. printf("%s\t||", T->information.num[i]);
  158. }
  159. printf("性别:%c||\n", T->information.sex);
  160. PrintTree(T->rchild);
  161. }
  162. void PrintHT(HashTable H,List L) {
  163. printf("**************************************************************************************************************************************************\n");
  164. printf("特别关心\n");
  165. PrintLike(L);
  166. printf("**************************************************************************************************************************************************\n");
  167. for (int i = 0; i < MaxNum-1; ++i) {
  168. if (H[i].T != NULL) {
  169. printf("==================================================================================================================================================\n");
  170. printf("||索引:%c||\n",'a'+i);
  171. printf("==================================================================================================================================================\n");
  172. PrintTree(H[i].T);
  173. }
  174. }
  175. if (H[MaxNum - 1].T != NULL) {
  176. printf("===============================================================================================================================================\n");
  177. printf("||索引:%c||\n", '#');
  178. printf("===============================================================================================================================================\n");
  179. PrintTree(H[MaxNum-1].T);
  180. }
  181. printf("==================================================================================================================================================\n");
  182. }
  183. void PrintLike(List L) {
  184. List p = L->next;
  185. while (p != NULL) {
  186. printf("||姓名:%s\t||", p->information.name);
  187. printf("电话:||");
  188. for (int i = 0; i < MaxPhone; ++i) {
  189. if (strcmp(p->information.num[i], " ") != 0)
  190. printf("%s\t||", p->information.num[i]);
  191. }
  192. printf("性别:%c||\n", p->information.sex);
  193. p = p->next;
  194. }
  195. }
  196. void PrintTreeF(BSTree T,FILE* f) {
  197. if (T == NULL) return;
  198. //中序遍历 从小到大遍历
  199. PrintTreeF(T->lchild,f);
  200. fprintf(f,"%s#", T->information.name);
  201. for (int i = 0; i<MaxPhone; ++i) {
  202. fprintf(f, "%s#", T->information.num[i]);
  203. }
  204. fprintf(f,"%c\n", T->information.sex);
  205. PrintTreeF(T->rchild,f);
  206. }
  207. void PrintFile(HashTable H,FILE* f) {
  208. f = fopen("AddressBook.txt", "w");
  209. for (int i = 0; i < MaxNum; ++i) {
  210. if (H[i].T != NULL) {
  211. PrintTreeF(H[i].T,f);
  212. }
  213. }
  214. fclose(f);
  215. }
  216. void PrintfLike(List L, FILE* fLike) {
  217. fLike = fopen("like.txt", "w");
  218. List p = L->next;
  219. while (p != NULL) {
  220. fprintf(fLike,"%s\n", p->information.name);
  221. p = p->next;
  222. }
  223. fclose(fLike);
  224. }
  225. /*读取存储的用户文件功能*/
  226. void ReadFile(FILE* f, FILE* fLike, HashTable& H, List& L) {
  227. f = fopen("AddressBook.txt", "r");
  228. fLike = fopen("like.txt", "r");
  229. if (f == NULL) {
  230. printf("不存在该文件!\n");
  231. return;
  232. }
  233. if (fLike == NULL) {
  234. printf("不存在该文件!\n");
  235. return;
  236. }
  237. char str[1000];
  238. char* strMode = NULL;
  239. int countStr = 0;
  240. int countInformation = 0;
  241. while (fgets(str, 1000, f)) {
  242. Information* e = (Information*)malloc(sizeof(Information));
  243. /*strtok 切割函数*/
  244. strMode = strtok(str, "#");
  245. int index = Hash(strMode);
  246. strcpy(e->name, strMode);
  247. for (int i = 0; i < MaxPhone; ++i) {
  248. strMode = strtok(NULL, "#");
  249. strcpy(e->num[i], strMode);
  250. }
  251. strMode = strtok(NULL, "#");
  252. e->sex = strMode[0];
  253. InsertBST(H[index].T, *e);
  254. }
  255. while (fgets(str, 1000, fLike)) {
  256. int index = Hash(str);
  257. strMode = strtok(str, "\n");
  258. InsertLike(L, H, str);
  259. }
  260. fclose(f);
  261. fclose(fLike);
  262. }
  263. /*删除功能*/
  264. void DeleteHT(HashTable& H, keyName name) {
  265. int index = Hash(name);
  266. if (!H[index].T) {
  267. printf("没有该联系人\n");
  268. return;
  269. }
  270. DeleteBST(H[index].T, name);
  271. }
  272. void DeleteBST(BSTree& T, keyName name) {
  273. //从二叉树排序树T中删除为name的节点
  274. BSTree p = T;
  275. BSTree f = NULL;//初始化
  276. /*-----------使用while循环从跟找关键字-----------*/
  277. while (p) {
  278. if (equals(p->information.name, name)) break;
  279. f=p;//f为p的双亲节点
  280. if (NameSum(p->information.name) >= NameSum(name)) {
  281. p = p->lchild;
  282. }
  283. else {
  284. p = p->rchild;
  285. }
  286. }
  287. if (p == NULL) { //没有找到该元素
  288. printf("没有该元素\n");
  289. return;
  290. }
  291. /*---- 考虑3种情况实现p所指子树内部的处理: p 的左右子树均不为空,无右子树,无左子树*/
  292. BSTree q = p;
  293. if ((p->lchild) && (p->rchild)) {
  294. BSTree s = p->lchild;
  295. while (s->rchild) { //向右到尽头
  296. q = s;
  297. s = s->rchild;
  298. }
  299. p->information = s->information;
  300. if (q != p) q->rchild = s->lchild; //重接右子树
  301. else q->lchild = s->lchild; //重接左子树
  302. free(s);
  303. return;
  304. }
  305. else if (!p->rchild) {
  306. p = p->lchild;
  307. }
  308. else if (!p->lchild) {
  309. p = p->rchild;
  310. }
  311. /*-----------将p所指的子树挂接到其双亲节点 f的相应位置---------------*/
  312. if (!f) T = p; //被删除节点为根节点
  313. else if (q == f->lchild) f->lchild = p; //挂接到左子树
  314. else f->rchild = p; //挂接到右子树
  315. free(q);
  316. printf("删除成功!\n");
  317. }
  318. void DeleteList(List& L, keyName name) {
  319. List prev = NULL;
  320. List p = L;
  321. //处理头节点的情况
  322. if (p && equals(p->information.name, name)) {
  323. L = p->next;
  324. free(p);
  325. printf("删除成功!\n");
  326. return;
  327. }
  328. //循环找节点
  329. while (p != NULL) {
  330. if (equals(p->information.name, name)) {
  331. if (prev == NULL) { //头节点
  332. L = p->next;
  333. }
  334. else {
  335. prev->next = p->next;
  336. }
  337. free(p);
  338. printf("删除成功!\n");
  339. return;
  340. }
  341. prev = p;
  342. p = p->next;
  343. }
  344. printf("无该元素!\n");
  345. return;
  346. }
  347. /*查找,修改功能*/
  348. BSTree Search(HashTable H, keyName name) {
  349. int index = Hash(name);
  350. if (!H[index].T) {
  351. return NULL;
  352. }
  353. BSTree p = H[index].T;
  354. /*-----------使用while循环从跟找关键字-----------*/
  355. while (p) {
  356. if (equals(p->information.name, name)) {
  357. return p;
  358. }
  359. if (NameSum(p->information.name) >= NameSum(name)) {
  360. p = p->lchild;
  361. }
  362. else {
  363. p = p->rchild;
  364. }
  365. }
  366. if (p == NULL) { //没有找到该元素
  367. return NULL;
  368. }
  369. }
  370. List SearchL(List L, keyName name) {
  371. List p = L->next;
  372. while (p) {
  373. if (equals(p->information.name, name)) {
  374. return p;
  375. }
  376. p = p->next;
  377. }
  378. return NULL;
  379. }
  380. void Modify(HashTable& H, List& L, keyName name) {
  381. int index = Hash(name);
  382. if (!H[index].T) {
  383. printf("无此人信息\n");
  384. return ;
  385. }
  386. BSTree p = Search(H, name);
  387. if(p==NULL) {
  388. printf("无此人信息\n");
  389. return;
  390. }
  391. /*-----------修改电话号,性别,姓名---------*/
  392. /*姓名牵扯关键字,所以我们需要重新进行排序插入*/
  393. int choice = 0;
  394. int choice2 = 0;
  395. printf("-------------修改选项----------------\n");
  396. printf("-------------1.姓名------------------\n");
  397. printf("-------------2.电话号----------------\n");
  398. printf("-------------3.性别------------------\n");
  399. printf("-------------4.退出------------------\n");
  400. scanf("%d", &choice);
  401. getchar();
  402. char buffer[1000];
  403. char newname[11];
  404. char newnum[12];
  405. char newsex = '0';
  406. int index2 = 0;
  407. int count = 0;
  408. switch (choice)
  409. {
  410. //修改姓名
  411. case 1:
  412. printf("请输入你想修改的新姓名:\n");
  413. scanf("%10s", newname);
  414. gets_s(buffer);
  415. Information newnode;
  416. strcpy(newnode.name, newname);
  417. for (int i = 0;i<MaxPhone; ++i) {
  418. strcpy(newnode.num[i], p->information.num[i]);
  419. }
  420. newnode.sex = p->information.sex;
  421. //删除旧的 插入新的
  422. index = Hash(newname);
  423. DeleteHT(H, name);
  424. InsertBST(H[index].T, newnode);
  425. //更新链表状态
  426. DeleteList(L, name);
  427. InsertLike(L,H,newname);
  428. printf("修改成功!\n");
  429. break;
  430. //电话号修改
  431. case 2:
  432. printf("你想修改还是删除? -0 修改 -1删除 -2添加\n");
  433. scanf("%d", &choice2);
  434. gets_s(buffer);
  435. switch (choice2)
  436. {
  437. case 0:
  438. printf("你想修改第几个电话?\n");
  439. scanf("%d", &index2);
  440. gets_s(buffer);
  441. if (strcmp(p->information.num[index2-1], " ") == 0) {
  442. printf("改电话不存在\n");
  443. break;
  444. }
  445. printf("请输入联系人电话号(11个数字)\n");
  446. scanf("%11s", newnum);
  447. strcpy(p->information.num[index2 - 1], newnum);
  448. gets_s(buffer);
  449. //更新特别关心列表
  450. DeleteList(L, name);
  451. InsertLike(L, H, name);
  452. break;
  453. case 1:
  454. printf("请输入你想删除的第几个电话?\n");
  455. scanf("%d", &index2);
  456. gets_s(buffer);
  457. if (strcmp(p->information.num[index2-1], " ") == 0) {
  458. printf("改电话不存在\n");
  459. break;
  460. }
  461. for (int i = index2; i < MaxPhone; ++i) {
  462. strcpy(p->information.num[i- 1], p->information.num[i]);
  463. }
  464. printf("删除成功!\n");
  465. //更新特别关心列表
  466. DeleteList(L, name);
  467. InsertLike(L, H, name);
  468. break;
  469. case 2:
  470. printf("输入你想添加的电话号\n");
  471. printf("请输入联系人电话号(11个数字)\n");
  472. scanf("%11s", newnum);
  473. gets_s(buffer);
  474. count = 0;
  475. for (int i = 0; i < MaxPhone; ++i) {
  476. count++;
  477. if (strcmp(p->information.num[i], " ") == 0) {
  478. strcpy(p->information.num[i], newnum);
  479. break;
  480. }
  481. }
  482. if (count == MaxNum - 1) {
  483. printf("电话存储空间已经满了\n");
  484. break;
  485. }
  486. printf("添加成功!\n");
  487. //更新特别关心列表
  488. DeleteList(L, name);
  489. InsertLike(L, H, name);
  490. break;
  491. default:
  492. return;
  493. }
  494. break;
  495. //性别
  496. case 3:
  497. printf("请输入联系人的性别(一个字母 M:男性,W:女性)\n");
  498. scanf("%c", &newsex);
  499. p->information.sex = newsex;
  500. gets_s(buffer);
  501. //更新特别关心列表
  502. DeleteList(L, name);
  503. InsertLike(L, H, name);
  504. break;
  505. default:
  506. break;
  507. }
  508. //清理缓存区
  509. memset(buffer, 0, sizeof(buffer));
  510. }
  511. /*用户界面*/
  512. int OperateMenu() {
  513. int choice;
  514. printf("===========================================================\n");
  515. printf("||<<<<<<<<<<<<<<<<<<<<<1.创建哈希表>>>>>>>>>>>>>>>>>>>>>>||\n");
  516. printf("||<<<<<<<<<<<<<<<<<<<<<2.插入联系人>>>>>>>>>>>>>>>>>>>>>>||\n");
  517. printf("||<<<<<<<<<<<<<<<<<<<<<3.打印>>>>>>>>>>>>>>>>>>>>>>>>>>>>||\n");
  518. printf("||<<<<<<<<<<<<<<<<<<<<<4.删除指定联系人信息>>>>>>>>>>>>>>||\n");
  519. printf("||<<<<<<<<<<<<<<<<<<<<<5.查找指定联系人>>>>>>>>>>>>>>>>>>||\n");
  520. printf("||<<<<<<<<<<<<<<<<<<<<<6.修改指定联系人信息>>>>>>>>>>>>>>||\n");
  521. printf("||<<<<<<<<<<<<<<<<<<<<<7.信息存入文件中>>>>>>>>>>>>>>>>>>||\n");
  522. printf("||<<<<<<<<<<<<<<<<<<<<<8.添加特别关心>>>>>>>>>>>>>>>>>>>>||\n");
  523. printf("||<<<<<<<<<<<<<<<<<<<<<9.删除特别关心>>>>>>>>>>>>>>>>>>>>||\n");
  524. printf("||<<<<<<<<<<<<<<<<<<<<<输入其他.退出>>>>>>>>>>>>>>>>>>>>>||\n");
  525. printf("===========================================================\n");
  526. scanf("%d", &choice);
  527. getchar();//吞掉回车
  528. return choice;
  529. }

第二个 .cpp文件来写主函数mian

  1. #define _CRT_SECURE_NO_WARNINGS 1
  2. #include "AddressBookTools.h"
  3. int main() {
  4. HashTable H=NULL;
  5. List L = NULL;
  6. CreatHT(H);
  7. //接受的选项
  8. int choice = 0;
  9. //修改姓名
  10. char name[11] = { 0 };
  11. //树节点
  12. BSTree p = NULL;
  13. int nums = 0;
  14. //存储用户文件指针
  15. FILE* f=NULL;
  16. //存储特别关心用户指针
  17. FILE* fLike = NULL;
  18. //充当缓冲区
  19. char buffer[1000];
  20. while (true)
  21. {
  22. choice = OperateMenu();
  23. switch (choice)
  24. {
  25. case 1:
  26. CreatHT(H);
  27. CreatL(L);
  28. //读取文件
  29. ReadFile(f,fLike, H,L);
  30. printf("创建成功!\n");
  31. PrintHT(H,L);
  32. break;
  33. //--------------------------------------------
  34. case 2:
  35. if (H == NULL) {
  36. printf("该哈希表未被初始化!\n");
  37. break;
  38. }
  39. nums = 0;
  40. printf("你想插入几个联系人:\n");
  41. scanf("%d", &nums);
  42. getchar();
  43. for (int i = 0; i < nums; ++i)
  44. InsertHT(H);
  45. PrintHT(H,L);
  46. PrintFile(H, f);
  47. break;
  48. //--------------------------------------------
  49. case 3:
  50. if (H == NULL) {
  51. printf("该哈希表未被初始化!\n");
  52. break;
  53. }
  54. PrintHT(H,L);
  55. break;
  56. //--------------------------------------------
  57. case 4:
  58. if (H == NULL) {
  59. printf("该哈希表未被初始化!\n");
  60. break;
  61. }
  62. printf("请输入你想删除的联系人姓名:\n");
  63. scanf("%10s", name);
  64. gets_s(buffer);
  65. DeleteHT(H, name);
  66. DeleteList(L, name);
  67. PrintfLike(L, fLike);
  68. PrintFile(H, f);
  69. break;
  70. //--------------------------------------------
  71. case 5:
  72. if (H == NULL) {
  73. printf("该哈希表未被初始化!\n");
  74. break;
  75. }
  76. printf("请输入你想查找的联系人姓名:\n");
  77. scanf("%10s", name);
  78. gets_s(buffer);
  79. p = Search(H, name);
  80. if (p == NULL)printf("查找不到该元素\n");
  81. printf("||姓名:%s\t||", p->information.name);
  82. printf("电话:%s\t||", p->information.num);
  83. printf("性别:%c||\n", p->information.sex);
  84. break;
  85. //--------------------------------------------
  86. case 6:
  87. if (H == NULL) {
  88. printf("该哈希表未被初始化!\n");
  89. break;
  90. }
  91. printf("请输入你想修改的联系人姓名:\n");
  92. scanf("%10s", name);
  93. gets_s(buffer);
  94. Modify(H,L, name);
  95. PrintFile(H, f);
  96. break;
  97. //--------------------------------------------
  98. case 7:
  99. if (H == NULL) {
  100. printf("该哈希表未被初始化!\n");
  101. break;
  102. }
  103. PrintFile(H, f);
  104. break;
  105. case 8:
  106. printf("请输入你想加入的姓名\n");
  107. scanf("%10s", name);
  108. gets_s(buffer);
  109. InsertLike(L, H, name);
  110. PrintHT(H, L);
  111. PrintfLike(L, fLike);
  112. break;
  113. case 9:
  114. printf("请输入你想删除的姓名\n");
  115. scanf("%10s", name);
  116. gets_s(buffer);
  117. DeleteList(L, name);
  118. PrintHT(H, L);
  119. PrintfLike(L, fLike);
  120. break;
  121. default:
  122. return 0;
  123. }
  124. memset(buffer, 0, sizeof(buffer));
  125. }
  126. }

资源文件

创建 Addressbook.txt与like.txt文件来存储读入的文件,

1.如果都在一个项目我们只需要在fopen()函数里面输入文件名,即相对路径,

2.如果在文件外,我们就要输入全部路径又称绝对路径

运行结果

 具体操作呢你们可以自己去使用,

总结:

本次实验使用了  哈希表,顺序二叉树,链表存储结构,实现了相关的算法,有不足的地方可以评论区或者私聊本人指出错误

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

闽ICP备14008679号